summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-10-14 17:14:16 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-10-14 17:14:16 (GMT)
commit403ce78872f6982b6ecaa96b94c88cbf0f1159e6 (patch)
treea817f003b83257955d7af4a8f12fe03782664890 /Misc
parent919765a0950ffa3cb81a70c7223c6252f45b4d7f (diff)
downloadcpython-403ce78872f6982b6ecaa96b94c88cbf0f1159e6.zip
cpython-403ce78872f6982b6ecaa96b94c88cbf0f1159e6.tar.gz
cpython-403ce78872f6982b6ecaa96b94c88cbf0f1159e6.tar.bz2
Issue #7065: Fix a crash in bytes.maketrans and bytearray.maketrans when
using byte values greater than 127. Patch by egreen.
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 ecd9fc2..101487a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.2 Alpha 1?
Core and Builtins
-----------------
+- Issue #7065: Fix a crash in bytes.maketrans and bytearray.maketrans when
+ using byte values greater than 127. Patch by egreen.
+
- Issue #1571184: The Unicode database contains properties for more characters.
The tables for code points representing numeric values, white spaces or line
breaks are now generated from the official Unicode Character Database files,