diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-04-15 13:38:34 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-04-15 13:38:34 (GMT) |
commit | 2df6a939164a8aec914086137f1242c205312f72 (patch) | |
tree | 5d46d9c3db5278c75ddced1a6ea90cb666d2dc2f /Misc | |
parent | 397eb4411a076825766cb2b71e78b585ff3a4d24 (diff) | |
download | cpython-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/NEWS | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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. |