mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +00:00
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. ........
This commit is contained in:
parent
0b441dad46
commit
eccd4d910d
3 changed files with 14 additions and 6 deletions
|
@ -212,13 +212,13 @@ class BasicSignalTests(unittest.TestCase):
|
|||
@unittest.skipUnless(sys.platform == "win32", "Windows specific")
|
||||
class WindowsSignalTests(unittest.TestCase):
|
||||
def test_issue9324(self):
|
||||
# Updated for issue #10003, adding SIGBREAK
|
||||
handler = lambda x, y: None
|
||||
signal.signal(signal.SIGABRT, handler)
|
||||
signal.signal(signal.SIGFPE, handler)
|
||||
signal.signal(signal.SIGILL, handler)
|
||||
signal.signal(signal.SIGINT, handler)
|
||||
signal.signal(signal.SIGSEGV, handler)
|
||||
signal.signal(signal.SIGTERM, handler)
|
||||
for sig in (signal.SIGABRT, signal.SIGBREAK, signal.SIGFPE,
|
||||
signal.SIGILL, signal.SIGINT, signal.SIGSEGV,
|
||||
signal.SIGTERM):
|
||||
# Set and then reset a handler for signals that work on windows
|
||||
signal.signal(sig, signal.signal(sig, handler))
|
||||
|
||||
with self.assertRaises(ValueError):
|
||||
signal.signal(-1, handler)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue