summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-03-31 13:44:06 (GMT)
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-03-31 13:44:06 (GMT)
commit16caab00a259c1a01f8e47abdd321c42b1b6e554 (patch)
tree3f0b25ec6a9f8f9cd9e5cd5f852b46418fc280bd /Misc/NEWS
parent6bf6367b6725dd6fd2d7d07a447117d72b31c40e (diff)
downloadcpython-16caab00a259c1a01f8e47abdd321c42b1b6e554.zip
cpython-16caab00a259c1a01f8e47abdd321c42b1b6e554.tar.gz
cpython-16caab00a259c1a01f8e47abdd321c42b1b6e554.tar.bz2
Merged revisions 70800 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r70800 | hirokazu.yamamoto | 2009-03-31 22:13:05 +0900 | 1 line Issue #5387: Fixed mmap.move crash by integer overflow. ........
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 911e944..d78220e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -53,6 +53,8 @@ Core and Builtins
Library
-------
+- Issue #5387: Fixed mmap.move crash by integer overflow.
+
- Issue #5261: Patch multiprocessing's semaphore.c to support context
manager use: "with multiprocessing.Lock()" works now.