diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-10-26 20:21:13 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-10-26 20:21:13 (GMT) |
commit | bdca942ffcdb6e14758d3e2f7a9e9fbbfa931c06 (patch) | |
tree | 47ab776f87d60ae4372e5ef3c010fc3f7117332e /Misc | |
parent | adc93b9499cc04c41499c313a08b45ea34606e21 (diff) | |
download | cpython-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/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 #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. |