summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-02-25 23:27:56 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-02-25 23:27:56 (GMT)
commit25c3053a4f65fecaa7dfcabdbd7627a425d1a812 (patch)
tree8618dd858dd7495689ec674a1d1569a37c1a3df2 /Misc
parent36025478bff1012dbb6d9312aca4a798ee089e8e (diff)
parent29ec595c6a705428784d24eb7e03681637c4eb03 (diff)
downloadcpython-25c3053a4f65fecaa7dfcabdbd7627a425d1a812.zip
cpython-25c3053a4f65fecaa7dfcabdbd7627a425d1a812.tar.gz
cpython-25c3053a4f65fecaa7dfcabdbd7627a425d1a812.tar.bz2
(Merge 3.3) Issue #17223: array module: Fix a crasher when converting an array
containing invalid characters (outside range [U+0000; U+10ffff]) to Unicode: repr(array), str(array) and array.tounicode(). Patch written by Manuel Jacob.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4688aff..03d4b94 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.4.0 Alpha 1?
Core and Builtins
-----------------
+- Issue #17223: array module: Fix a crasher when converting an array containing
+ invalid characters (outside range [U+0000; U+10ffff]) to Unicode:
+ repr(array), str(array) and array.tounicode(). Patch written by Manuel Jacob.
+
- Issue #17223: Fix PyUnicode_FromUnicode() for string of 1 character outside
the range U+0000-U+10ffff.