diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-09-23 17:55:21 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-09-23 17:55:21 (GMT) |
commit | 6f80f5d4446f06d15274ad519cae6929a3565cc0 (patch) | |
tree | 652d58b6404e41887d2acbe1fe538d3eb05267a1 /Misc | |
parent | 20b8d992b008672d52a84c8d35992033ccfc9d84 (diff) | |
download | cpython-6f80f5d4446f06d15274ad519cae6929a3565cc0.zip cpython-6f80f5d4446f06d15274ad519cae6929a3565cc0.tar.gz cpython-6f80f5d4446f06d15274ad519cae6929a3565cc0.tar.bz2 |
Issue #15379: Fix passing of non-BMP characters as integers for the charmap decoder (already working as unicode strings).
Patch by Serhiy Storchaka.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.2.4 Core and Builtins ----------------- +- Issue #15379: Fix passing of non-BMP characters as integers for the charmap + decoder (already working as unicode strings). Patch by Serhiy Storchaka. + - Issue #13992: The trashcan mechanism is now thread-safe. This eliminates sporadic crashes in multi-thread programs when several long deallocator chains ran concurrently and involved subclasses of built-in container |