diff options
author | Brian Curtin <brian.curtin@gmail.com> | 2010-10-01 15:09:53 (GMT) |
---|---|---|
committer | Brian Curtin <brian.curtin@gmail.com> | 2010-10-01 15:09:53 (GMT) |
commit | eccd4d910dc61d5ad8ccc9c62d3ab823b359aa9d (patch) | |
tree | b99aca8e429e6dcbeac85dc51b7a6894f4826a0b /Modules/signalmodule.c | |
parent | 0b441dad464050a1f0e9fb6a84ffb97bd52f1f1e (diff) | |
download | cpython-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 'Modules/signalmodule.c')
-rw-r--r-- | Modules/signalmodule.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Modules/signalmodule.c b/Modules/signalmodule.c index c2e762a..1aa86f4 100644 --- a/Modules/signalmodule.c +++ b/Modules/signalmodule.c @@ -258,6 +258,11 @@ signal_signal(PyObject *self, PyObject *args) /* Validate that sig_num is one of the allowable signals */ switch (sig_num) { case SIGABRT: break; +#ifdef SIGBREAK + /* Issue #10003: SIGBREAK is not documented as permitted, but works + and corresponds to CTRL_BREAK_EVENT. */ + case SIGBREAK: break; +#endif case SIGFPE: break; case SIGILL: break; case SIGINT: break; |