summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrian Curtin <brian.curtin@gmail.com>2010-08-01 15:47:53 (GMT)
committerBrian Curtin <brian.curtin@gmail.com>2010-08-01 15:47:53 (GMT)
commitba6c08e67077a368c21016171446c26eef5c27d2 (patch)
tree546a2c82f1d1f9063306adae0a8e09211ea01480 /Misc
parentaad57bd1bbaea92a5619a8d79d3d2ed90d32a35f (diff)
downloadcpython-ba6c08e67077a368c21016171446c26eef5c27d2.zip
cpython-ba6c08e67077a368c21016171446c26eef5c27d2.tar.gz
cpython-ba6c08e67077a368c21016171446c26eef5c27d2.tar.bz2
Merged revisions 83407 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83407 | brian.curtin | 2010-08-01 10:26:26 -0500 (Sun, 01 Aug 2010) | 3 lines Fix #8105. Add validation to mmap.mmap so invalid file descriptors don't cause a crash on Windows. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2c3e729..713e422 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -76,6 +76,8 @@ Library
Extension Modules
-----------------
+- Issue #8105: Validate file descriptor passed to mmap.mmap on Windows.
+
- Issue #1019882: Fix IndexError when loading certain hotshot stats.
- Issue #9422: Fix memory leak when re-initializing a struct.Struct object.