summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-09-23 18:00:04 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-09-23 18:00:04 (GMT)
commita1f7655fa7e09ec33a240e4e2f589bca2eac76e0 (patch)
tree69af12cefa3b52cf342fc4c7841fc13a4426b006 /Misc
parent5011244be0f12ab51ca318bdc409d5df5f8c7914 (diff)
parent6f80f5d4446f06d15274ad519cae6929a3565cc0 (diff)
downloadcpython-a1f7655fa7e09ec33a240e4e2f589bca2eac76e0.zip
cpython-a1f7655fa7e09ec33a240e4e2f589bca2eac76e0.tar.gz
cpython-a1f7655fa7e09ec33a240e4e2f589bca2eac76e0.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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 29fd307..49d6834 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3.1
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 #15144: Fix possible integer overflow when handling pointers as
integer values, by using Py_uintptr_t instead of size_t. Patch by
Serhiy Storchaka.