diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-03-17 20:41:42 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-03-17 20:41:42 (GMT) |
commit | 0dee9c1b5cba45c2a6c0320021f88397c559312e (patch) | |
tree | 9549f3be7acc89017dcbe30327792b846c846967 /Misc | |
parent | 78c1871d2171b091d7249af63a4b5e3a927c0bc2 (diff) | |
download | cpython-0dee9c1b5cba45c2a6c0320021f88397c559312e.zip cpython-0dee9c1b5cba45c2a6c0320021f88397c559312e.tar.gz cpython-0dee9c1b5cba45c2a6c0320021f88397c559312e.tar.bz2 |
prevent lambda functions from having docstrings #8164
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -12,6 +12,8 @@ What's New in Python 2.7 beta 1? Core and Builtins ----------------- +- Issue #8164: Don't allow lambda functions to have a docstring. + - Issue #3137: Don't ignore errors at startup, especially a keyboard interrupt (SIGINT). If an error occurs while importing the site module, the error is printed and Python exits. Initialize the GIL before importing the site |