diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-04-15 13:52:35 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-04-15 13:52:35 (GMT) |
commit | e1adeeb7fd25acb4649d0eae314c5b9dc02348d4 (patch) | |
tree | ea15ce1195e23707d74721f12fc5a8f9889996e4 /Misc | |
parent | b496159603e5cc31904a894166ecce52fea01a1c (diff) | |
parent | 71e84a6e27da7bfa8351d03ba8e52eb0b5150fb2 (diff) | |
download | cpython-e1adeeb7fd25acb4649d0eae314c5b9dc02348d4.zip cpython-e1adeeb7fd25acb4649d0eae314c5b9dc02348d4.tar.gz cpython-e1adeeb7fd25acb4649d0eae314c5b9dc02348d4.tar.bz2 |
#5057: Merge with 3.2.
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.3 Alpha 1? 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 #11845: Fix typo in rangeobject.c that caused a crash in compute_slice_indices. Patch by Daniel Urban. @@ -106,7 +110,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. |