summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-03-17 20:41:42 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-03-17 20:41:42 (GMT)
commit0dee9c1b5cba45c2a6c0320021f88397c559312e (patch)
tree9549f3be7acc89017dcbe30327792b846c846967 /Misc
parent78c1871d2171b091d7249af63a4b5e3a927c0bc2 (diff)
downloadcpython-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/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 35fddeb..ffcdaa7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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