commit | d1c7d07d6758657be7f252c9a03f4b0da9d7720f | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Thu Sep 25 20:46:05 2008 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Thu Sep 25 20:46:05 2008 +0000 |
tree | fb5c4baec80017190b8922d2a6c1d9da72b73047 | |
parent | 8e97ea9c6b079716c3400b51c6fd262329b68b96 [diff] [blame] |
make sure to give a 'as' and 'with' parser warning even after import statements #3936
diff --git a/Misc/NEWS b/Misc/NEWS index 1a58dba..5fcf456 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -12,6 +12,9 @@ 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.