fix "isisgeneratorfunction" (#1301)

This commit is contained in:
Jelle Zijlstra
2017-05-23 09:51:54 -07:00
committed by Matthias Kramm
parent 764d949f04
commit 915a91f80d

View File

@@ -18,7 +18,7 @@ def ismodule(object: object) -> bool: ...
def isclass(object: object) -> bool: ...
def ismethod(object: object) -> bool: ...
def isfunction(object: object) -> bool: ...
def isisgeneratorfunction(object: object) -> bool: ...
def isgeneratorfunction(object: object) -> bool: ...
def isgenerator(object: object) -> bool: ...
def istraceback(object: object) -> bool: ...
def isframe(object: object) -> bool: ...