diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-10-31 02:16:05 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-10-31 02:16:05 (GMT) |
commit | dcee09d9204957ace381b1c3507259f718aa4907 (patch) | |
tree | bb1bee26c4b535f8e9dd75f25a1ef1a72735e880 /Misc | |
parent | 44a90c95ceb6d6348dd7f81db33287f09112118d (diff) | |
download | cpython-dcee09d9204957ace381b1c3507259f718aa4907.zip cpython-dcee09d9204957ace381b1c3507259f718aa4907.tar.gz cpython-dcee09d9204957ace381b1c3507259f718aa4907.tar.bz2 |
make sure the parser flags and passed onto the compiler
This fixes "from __future__ import unicode_literals" in an exec statment
See #4225
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.7 alpha 1 Core and Builtins ----------------- +- Issue #4225: ``from __future__ import unicode_literals`` didn't work in an + exec statement. + - Issue #4176: Fixed a crash when pickling an object which ``__reduce__`` method does not return iterators for the 4th and 5th items. |