Typo: isis -> is (#495)

Fixes inspect.isgeneratorfunction().
This commit is contained in:
Antoine Catton
2016-08-24 01:24:16 +02:00
committed by David Fisher
parent 9451fa922c
commit 5b5135878b

View File

@@ -23,7 +23,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: ...
# Python 3.5+