summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-10-26 20:59:05 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-10-26 20:59:05 (GMT)
commitb74777ed333ce2d22494fd4c996e87d386d950c8 (patch)
tree5f59a0c96e3862a887dd6626dd374c7357dbcfda /Misc/NEWS
parent23681daa712b42a0bd0b81efcb0ad8ca1a3ed368 (diff)
downloadcpython-b74777ed333ce2d22494fd4c996e87d386d950c8.zip
cpython-b74777ed333ce2d22494fd4c996e87d386d950c8.tar.gz
cpython-b74777ed333ce2d22494fd4c996e87d386d950c8.tar.bz2
Merged revisions 67030-67031 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r67030 | benjamin.peterson | 2008-10-26 15:21:13 -0500 (Sun, 26 Oct 2008) | 1 line fix __future__ imports when multiple features are given ........ r67031 | benjamin.peterson | 2008-10-26 15:33:19 -0500 (Sun, 26 Oct 2008) | 1 line add forgotten test for r67030 ........
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 73bb7fa..3d28958 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.6.1 alpha 1
Core and Builtins
-----------------
+- Issue #4209: Enabling unicode_literals and the print_function in the same
+ __future__ import didn't work.
+
- On windows, os.chdir given unicode was not working if GetCurrentDirectoryW
returned a path longer than MAX_PATH. (But It's doubtful this code path is
really executed because I cannot move to such directory on win2k)