diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-14 17:14:16 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-14 17:14:16 (GMT) |
commit | 403ce78872f6982b6ecaa96b94c88cbf0f1159e6 (patch) | |
tree | a817f003b83257955d7af4a8f12fe03782664890 /Misc | |
parent | 919765a0950ffa3cb81a70c7223c6252f45b4d7f (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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, |