summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-09-24 12:35:36 (GMT)
committerGeorg Brandl <georg@python.org>2006-09-24 12:35:36 (GMT)
commita10d3afed2f27504768dffd3a915a7c876258505 (patch)
tree57bb038a659bdde20b75d38ca143476ee95ac59d /Misc
parent2c94bf7d410b151d6e7e38275c9dda871a5e8882 (diff)
downloadcpython-a10d3afed2f27504768dffd3a915a7c876258505.zip
cpython-a10d3afed2f27504768dffd3a915a7c876258505.tar.gz
cpython-a10d3afed2f27504768dffd3a915a7c876258505.tar.bz2
Fix a bug in the parser's future statement handling that led to "with"
not being recognized as a keyword after, e.g., this statement: from __future__ import division, with_statement
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 891c785..ae14e8f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 2.6 alpha 1?
Core and builtins
-----------------
+- Fix a bug in the parser's future statement handling that led to "with"
+ not being recognized as a keyword after, e.g., this statement:
+ from __future__ import division, with_statement
+
- Bug #1557232: fix seg fault with def f((((x)))) and def f(((x),)).
- Fix %zd string formatting on Mac OS X so it prints negative numbers.