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.
........
diff --git a/Misc/NEWS b/Misc/NEWS
index 2c3e729..713e422 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -76,6 +76,8 @@
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.