summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-09-04 21:24:42 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-09-04 21:24:42 (GMT)
commite6ebcdaa54d2527b1ae94fd95f5ee96dfdc9abe4 (patch)
tree24dd6c9860a9b55db398b8ed3b3b1e9b086bc6b1 /Misc/NEWS
parentdca9de97b4256c8aad8a423d6f1d889d2bae9b3d (diff)
downloadcpython-e6ebcdaa54d2527b1ae94fd95f5ee96dfdc9abe4.zip
cpython-e6ebcdaa54d2527b1ae94fd95f5ee96dfdc9abe4.tar.gz
cpython-e6ebcdaa54d2527b1ae94fd95f5ee96dfdc9abe4.tar.bz2
Merged revisions 84506 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84506 | antoine.pitrou | 2010-09-04 22:53:29 +0200 (sam., 04 sept. 2010) | 5 lines Issue #8734: Avoid crash in msvcrt.get_osfhandle() when an invalid file descriptor is provided. Patch by Pascal Chambon. ........
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8ac6168..b205fa5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -228,6 +228,9 @@ Library
Extension Modules
-----------------
+- Issue #8734: Avoid crash in msvcrt.get_osfhandle() when an invalid file
+ descriptor is provided. Patch by Pascal Chambon.
+
- Issue #7736: Release the GIL around calls to opendir() and closedir()
in the posix module. Patch by Marcin Bachry.