summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-10-26 20:21:13 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-10-26 20:21:13 (GMT)
commitbdca942ffcdb6e14758d3e2f7a9e9fbbfa931c06 (patch)
tree47ab776f87d60ae4372e5ef3c010fc3f7117332e /Misc
parentadc93b9499cc04c41499c313a08b45ea34606e21 (diff)
downloadcpython-bdca942ffcdb6e14758d3e2f7a9e9fbbfa931c06.zip
cpython-bdca942ffcdb6e14758d3e2f7a9e9fbbfa931c06.tar.gz
cpython-bdca942ffcdb6e14758d3e2f7a9e9fbbfa931c06.tar.bz2
fix __future__ imports when multiple features are given
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 9202c40..ae89094 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 1
Core and Builtins
-----------------
+- Issue #4209: Enabling unicode_literals and the print_function in the same
+ __future__ import didn't work.
+
- Using ``nonlocal`` as a variable name will now raise a Py3k SyntaxWarning
because it is a reserved word in 3.x.