summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-09-25 20:46:05 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-09-25 20:46:05 (GMT)
commitd1c7d07d6758657be7f252c9a03f4b0da9d7720f (patch)
treefb5c4baec80017190b8922d2a6c1d9da72b73047 /Misc
parent8e97ea9c6b079716c3400b51c6fd262329b68b96 (diff)
downloadcpython-d1c7d07d6758657be7f252c9a03f4b0da9d7720f.zip
cpython-d1c7d07d6758657be7f252c9a03f4b0da9d7720f.tar.gz
cpython-d1c7d07d6758657be7f252c9a03f4b0da9d7720f.tar.bz2
make sure to give a 'as' and 'with' parser warning even after import statements #3936
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1a58dba..5fcf456 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.5.3?
Core and builtins
-----------------
+- Issue #3936: The parser warnings for using "as" and "with" as variable names
+ didn't fire after import statements.
+
- Issue #3751: str.rpartition would perform a left-partition when called with
a unicode argument.