summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-07-11 12:15:03 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-07-11 12:15:03 (GMT)
commitdedbbe6b3bfbf1fda4e333ec80507576c1725544 (patch)
tree19abf6d0a13efd7cf1334c50326c822b07fc2689 /Misc
parentf306acc8dc11f30283ad8a97e9614ce2d21f803d (diff)
downloadcpython-dedbbe6b3bfbf1fda4e333ec80507576c1725544.zip
cpython-dedbbe6b3bfbf1fda4e333ec80507576c1725544.tar.gz
cpython-dedbbe6b3bfbf1fda4e333ec80507576c1725544.tar.bz2
Merged revisions 82814 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82814 | antoine.pitrou | 2010-07-11 14:12:00 +0200 (dim., 11 juil. 2010) | 4 lines Issue #7616: Fix copying of overlapping memoryview slices with the Intel compiler. ........
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 6296eef..7911c4f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.1.3?
Core and Builtins
-----------------
+- Issue #7616: Fix copying of overlapping memoryview slices with the Intel
+ compiler.
+
- Issue #8271: during the decoding of an invalid UTF-8 byte sequence, only the
start byte and the continuation byte(s) are now considered invalid, instead
of the number of bytes specified by the start byte.