summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-03-05 14:33:01 (GMT)
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-03-05 14:33:01 (GMT)
commit8e722bcf85641d0519f39c9ca31348c3b7a1d12e (patch)
tree2f0199db9959ff4be8565246d4d7c82cd75e3849 /Misc/NEWS
parent9a8082f107d3fd3599c2f21a130413030e3d4cfe (diff)
downloadcpython-8e722bcf85641d0519f39c9ca31348c3b7a1d12e.zip
cpython-8e722bcf85641d0519f39c9ca31348c3b7a1d12e.tar.gz
cpython-8e722bcf85641d0519f39c9ca31348c3b7a1d12e.tar.bz2
Merged revisions 70189 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r70189 | hirokazu.yamamoto | 2009-03-05 23:21:12 +0900 | 4 lines Issue #5385: Fixed mmap crash after resize failure on windows. Now uses NULL instead of INVALID_HANDLE_VALUE as invalid map handle because CreateFileMapping returns NULL when error occurs. ........
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 83e5874..24b8729 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -183,6 +183,8 @@ Core and Builtins
Library
-------
+- Issue #5385: Fixed mmap crash after resize failure on windows.
+
- Issue #5179: Fixed subprocess handle leak on failure on windows.
- PEP 372: Added collections.OrderedDict().