diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-14 17:18:54 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-14 17:18:54 (GMT) |
commit | 96bb15bcb46b5e7cb3cd9ec62b8d2039e4ec7057 (patch) | |
tree | ba8d6fc99fb55f2133584a1d1cb0a4086eb0fbd6 /Misc | |
parent | af4ea65a3a7d97531fd79721dedf89564d6ed11a (diff) | |
download | cpython-96bb15bcb46b5e7cb3cd9ec62b8d2039e4ec7057.zip cpython-96bb15bcb46b5e7cb3cd9ec62b8d2039e4ec7057.tar.gz cpython-96bb15bcb46b5e7cb3cd9ec62b8d2039e4ec7057.tar.bz2 |
Merged revisions 75404 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r75404 | antoine.pitrou | 2009-10-14 19:14:16 +0200 (mer., 14 oct. 2009) | 5 lines
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.1.2? 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 #7019: Raise ValueError when unmarshalling bad long data, instead of producing internally inconsistent Python longs. |