commit | 977a684c94c369a858f49ce1447308e373ca4ced | [log] [tgz] |
---|---|---|
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | Mon Aug 16 20:17:07 2010 +0000 |
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | Mon Aug 16 20:17:07 2010 +0000 |
tree | ff6779e1c4a2dfcf13edf2c7a2858fc0b27473e7 | |
parent | 4a339ad628e34578a0daea676b56fff919da6bb3 [diff] [blame] |
Issue #8983: Corrected docstrings.
diff --git a/Lib/inspect.py b/Lib/inspect.py index 3bc220b..61c2502 100644 --- a/Lib/inspect.py +++ b/Lib/inspect.py
@@ -159,7 +159,7 @@ 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)