summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-12-31 23:48:39 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-12-31 23:48:39 (GMT)
commit8ad09a4f2e557723395fc0840750c178924166b8 (patch)
tree07838590351ff6d6fb40fc17e0a33b742e40c9ab
parent3cda1db67f555d7628dbc808d3bc1e307eee623b (diff)
downloadcpython-8ad09a4f2e557723395fc0840750c178924166b8.zip
cpython-8ad09a4f2e557723395fc0840750c178924166b8.tar.gz
cpython-8ad09a4f2e557723395fc0840750c178924166b8.tar.bz2
#4795 inspect.isgeneratorfunction() should return False instead of None
-rw-r--r--Lib/inspect.py1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Lib/inspect.py b/Lib/inspect.py
index d3d946d..230df2b 100644
--- a/Lib/inspect.py
+++ b/Lib/inspect.py
@@ -161,6 +161,7 @@ def isgeneratorfunction(object):
if (isfunction(object) or ismethod(object)) and \
object.func_code.co_flags & CO_GENERATOR:
return True
+ return False
def isgenerator(object):
"""Return true if the object is a generator.
diff --git a/Misc/NEWS b/Misc/NEWS
index 38d0dec..7eab3ae 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -100,6 +100,9 @@ Core and Builtins
Library
-------
+- Issue #4795: inspect.isgeneratorfunction() returns False instead of None when
+ the function is not a generator.
+
- Issue #4702: Throwing a DistutilsPlatformError instead of IOError in case
no MSVC compiler is found under Windows. Original patch by Philip Jenvey.