mirror of
https://github.com/python/cpython.git
synced 2025-07-24 19:54:21 +00:00
Clean up the fix to #9324 with some of the suggestions raised on python-dev
in response to the original checkin. Move the validation from the original loop into a switch statement, and adjust a platform check in the tests.
This commit is contained in:
parent
92f87f7c49
commit
c734b312cb
2 changed files with 12 additions and 14 deletions
|
@ -9,9 +9,8 @@ import subprocess
|
|||
import traceback
|
||||
import sys, os, time, errno
|
||||
|
||||
if sys.platform == 'os2' or sys.platform == 'riscos':
|
||||
raise unittest.SkipTest("Can't test signal on %s" % \
|
||||
sys.platform)
|
||||
if sys.platform in ('os2', 'riscos'):
|
||||
raise unittest.SkipTest("Can't test signal on %s" % sys.platform)
|
||||
|
||||
|
||||
class HandlerBCalled(Exception):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue