Issue #6619: Remove duplicate 'isgenerator' function from inspect module.

Thanks Vincent Legoll.
This commit is contained in:
Mark Dickinson 2009-08-02 15:40:11 +00:00
parent 4326ad8f72
commit 9a6d6c93b4
2 changed files with 1 additions and 4 deletions

View File

@ -240,10 +240,6 @@ def isroutine(object):
or ismethod(object)
or ismethoddescriptor(object))
def isgenerator(object):
"""Return true if the object is a generator object."""
return isinstance(object, types.GeneratorType)
def isabstract(object):
"""Return true if the object is an abstract base class (ABC)."""
return isinstance(object, type) and object.__flags__ & TPFLAGS_IS_ABSTRACT

View File

@ -425,6 +425,7 @@ Inyeol Lee
Thomas Lee
Christopher Lee
Luc Lefebvre
Vincent Legoll
Kip Lehman
Joerg Lehmann
Luke Kenneth Casson Leighton