diff options
author | Georg Brandl <georg@python.org> | 2006-02-17 09:45:40 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-02-17 09:45:40 (GMT) |
commit | 501dd0dd9d271b45e73bf1ba078a6311e1b517c0 (patch) | |
tree | 91e6b0bc9966fcdf2f845fcf81ca248426993d7a | |
parent | 1b6726732c63d69f45f80deabe8435c2a6347db4 (diff) | |
download | cpython-501dd0dd9d271b45e73bf1ba078a6311e1b517c0.zip cpython-501dd0dd9d271b45e73bf1ba078a6311e1b517c0.tar.gz cpython-501dd0dd9d271b45e73bf1ba078a6311e1b517c0.tar.bz2 |
The names of lambda functions are now properly displayed in pydoc.
-rwxr-xr-x | Lib/pydoc.py | 2 | ||||
-rw-r--r-- | Misc/NEWS | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Lib/pydoc.py b/Lib/pydoc.py index b82e0e7..2bcf4c9 100755 --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -1248,7 +1248,7 @@ class TextDoc(Doc): argspec = inspect.formatargspec( args, varargs, varkw, defaults, formatvalue=self.formatvalue) if realname == '<lambda>': - title = 'lambda' + title = self.bold(name) + ' lambda ' argspec = argspec[1:-1] # remove parentheses else: argspec = '(...)' @@ -363,6 +363,8 @@ Extension Modules Library ------- +- The names of lambda functions are now properly displayed in pydoc. + - Patch #1412872: zipfile now sets the creator system to 3 (Unix) unless the system is Win32. |