summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBrian Curtin <brian.curtin@gmail.com>2010-10-01 16:44:03 (GMT)
committerBrian Curtin <brian.curtin@gmail.com>2010-10-01 16:44:03 (GMT)
commit1390dd7c9b1f621e0c31c60547d0beb5d432fb06 (patch)
tree5300e31f57ba43fff17345a5476a72f9f95aabec /Misc/NEWS
parent20ad3634af3dda11f71189f0997e4aa832a5c740 (diff)
downloadcpython-1390dd7c9b1f621e0c31c60547d0beb5d432fb06.zip
cpython-1390dd7c9b1f621e0c31c60547d0beb5d432fb06.tar.gz
cpython-1390dd7c9b1f621e0c31c60547d0beb5d432fb06.tar.bz2
Merged revisions 85140 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85140 | brian.curtin | 2010-10-01 09:49:24 -0500 (Fri, 01 Oct 2010) | 4 lines Fix #10003. Add SIGBREAK to the set of valid signals on Windows. This fixes a regression noticed by bzr, introduced by issue #9324. ........
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 78eb34f..1fabf61 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -299,6 +299,9 @@ Library
Extension Modules
-----------------
+- Issue #10003: Allow handling of SIGBREAK on Windows. Fixes a regression
+ introduced by issue #9324.
+
- Issue #8734: Avoid crash in msvcrt.get_osfhandle() when an invalid file
descriptor is provided. Patch by Pascal Chambon.