Commit a1a54bce authored by Mark Dickinson's avatar Mark Dickinson

Merged revisions 74285 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r74285 | mark.dickinson | 2009-08-02 16:40:11 +0100 (Sun, 02 Aug 2009) | 3 lines

  Issue #6619:  Remove duplicate 'isgenerator' function from inspect module.
  Thanks Vincent Legoll.
........
parent ea7cbe0c
......@@ -236,10 +236,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
......
......@@ -427,6 +427,7 @@ Thomas Lee
Christopher Lee
Tennessee Leeuwenburg
Luc Lefebvre
Vincent Legoll
Kip Lehman
Joerg Lehmann
Luke Kenneth Casson Leighton
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment