summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-10-31 02:16:05 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-10-31 02:16:05 (GMT)
commitdcee09d9204957ace381b1c3507259f718aa4907 (patch)
treebb1bee26c4b535f8e9dd75f25a1ef1a72735e880 /Misc
parent44a90c95ceb6d6348dd7f81db33287f09112118d (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3017d4b..234a15d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.