summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-02-18 16:38:00 (GMT)
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-02-18 16:38:00 (GMT)
commit0654ccd1d23986accb99c69e84369b99f9cdc8e2 (patch)
treecb8fb71b6573ef563641d0f27ce4de532edac144 /Misc/NEWS
parent14d34a0e43ce1b4dba1da50376011cd7a18dba49 (diff)
downloadcpython-0654ccd1d23986accb99c69e84369b99f9cdc8e2.zip
cpython-0654ccd1d23986accb99c69e84369b99f9cdc8e2.tar.gz
cpython-0654ccd1d23986accb99c69e84369b99f9cdc8e2.tar.bz2
Merged revisions 69714,69718 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r69714 | hirokazu.yamamoto | 2009-02-17 19:12:10 +0900 | 1 line Issue #5292: Fixed mmap crash on its boundary access m[len(m)]. ........ r69718 | hirokazu.yamamoto | 2009-02-17 22:17:26 +0900 | 3 lines Issue #5282: Fixed mmap resize on 32bit windows and unix. When offset > 0, The file was resized to wrong size. ........
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8357b21..e89c819 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -169,6 +169,11 @@ Core and Builtins
Library
-------
+- Issue #5282: Fixed mmap resize on 32bit windows and unix. When offset > 0,
+ The file was resized to wrong size.
+
+- Issue #5292: Fixed mmap crash on its boundary access m[len(m)].
+
- Issue #2279: distutils.sdist.add_defaults now add files
from the package_data and the data_files metadata.