summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrian Curtin <brian.curtin@gmail.com>2010-10-01 15:09:53 (GMT)
committerBrian Curtin <brian.curtin@gmail.com>2010-10-01 15:09:53 (GMT)
commiteccd4d910dc61d5ad8ccc9c62d3ab823b359aa9d (patch)
treeb99aca8e429e6dcbeac85dc51b7a6894f4826a0b /Misc
parent0b441dad464050a1f0e9fb6a84ffb97bd52f1f1e (diff)
downloadcpython-eccd4d910dc61d5ad8ccc9c62d3ab823b359aa9d.zip
cpython-eccd4d910dc61d5ad8ccc9c62d3ab823b359aa9d.tar.gz
cpython-eccd4d910dc61d5ad8ccc9c62d3ab823b359aa9d.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')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b6cfbeb..231ca55 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -523,6 +523,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.