summaryrefslogtreecommitdiffstats
path: root/Lib/inspect.py
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-08-16 20:26:04 (GMT)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-08-16 20:26:04 (GMT)
commit102594f7ff7794e9e4d9619447e252f188241ff0 (patch)
treee5b75e9a05036ce7950054a9b2dc51edbfb6a4bf /Lib/inspect.py
parent7a9bdbc1c2214bec2133139dd8830f17e0383eed (diff)
downloadcpython-102594f7ff7794e9e4d9619447e252f188241ff0.zip
cpython-102594f7ff7794e9e4d9619447e252f188241ff0.tar.gz
cpython-102594f7ff7794e9e4d9619447e252f188241ff0.tar.bz2
Merged revisions 84106 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84106 | alexander.belopolsky | 2010-08-16 16:17:07 -0400 (Mon, 16 Aug 2010) | 1 line Issue #8983: Corrected docstrings. ........
Diffstat (limited to 'Lib/inspect.py')
-rw-r--r--Lib/inspect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/inspect.py b/Lib/inspect.py
index 55d5316..5c7cfb4 100644
--- a/Lib/inspect.py
+++ b/Lib/inspect.py
@@ -157,7 +157,7 @@ def isgeneratorfunction(object):
Generator function objects provides same attributes as functions.
- See isfunction.__doc__ for attributes listing."""
+ See help(isfunction) for attributes listing."""
return bool((isfunction(object) or ismethod(object)) and
object.__code__.co_flags & CO_GENERATOR)