diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-09-25 20:46:05 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-09-25 20:46:05 (GMT) |
commit | d1c7d07d6758657be7f252c9a03f4b0da9d7720f (patch) | |
tree | fb5c4baec80017190b8922d2a6c1d9da72b73047 /Misc | |
parent | 8e97ea9c6b079716c3400b51c6fd262329b68b96 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |