summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-04-15 13:38:34 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2011-04-15 13:38:34 (GMT)
commit2df6a939164a8aec914086137f1242c205312f72 (patch)
tree5d46d9c3db5278c75ddced1a6ea90cb666d2dc2f /Misc
parent397eb4411a076825766cb2b71e78b585ff3a4d24 (diff)
downloadcpython-2df6a939164a8aec914086137f1242c205312f72.zip
cpython-2df6a939164a8aec914086137f1242c205312f72.tar.gz
cpython-2df6a939164a8aec914086137f1242c205312f72.tar.bz2
Issue #5057: fix a bug in the peepholer that led to non-portable pyc files between narrow and wide builds while optimizing BINARY_SUBSCR on non-BMP chars (e.g. "\U00012345"[0]).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 5 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6e971a0..7ea8850 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.1.4?
Core and Builtins
-----------------
+- Issue #5057: fix a bug in the peepholer that led to non-portable pyc files
+ between narrow and wide builds while optimizing BINARY_SUBSCR on non-BMP
+ chars (e.g. "\U00012345"[0]).
+
- Issue #11650: PyOS_StdioReadline() retries fgets() if it was interrupted
(EINTR), for example if the program is stopped with CTRL+z on Mac OS X. Patch
written by Charles-Francois Natali.
@@ -51,7 +55,7 @@ Core and Builtins
Library
-------
-- Issue #11467: Fix urlparse behavior when handling urls which contains scheme
+- Issue #11467: Fix urlparse behavior when handling urls which contains scheme
specific part only digits. Patch by Santoso Wijaya.
- Issue #11474: Fix the bug with url2pathname() handling of '/C|/' on Windows.