summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-10-14 17:18:54 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-10-14 17:18:54 (GMT)
commit96bb15bcb46b5e7cb3cd9ec62b8d2039e4ec7057 (patch)
treeba8d6fc99fb55f2133584a1d1cb0a4086eb0fbd6 /Misc
parentaf4ea65a3a7d97531fd79721dedf89564d6ed11a (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f6660a1..fb799a6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.