mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
Closes #16135: Removal of OS/2 support
This commit is contained in:
parent
fa7d5392d4
commit
f01d695ccd
12 changed files with 111 additions and 133 deletions
|
@ -8,7 +8,7 @@ from test.support import run_unittest, import_module
|
|||
thread = import_module('_thread')
|
||||
import time
|
||||
|
||||
if sys.platform[:3] in ('win', 'os2') or sys.platform=='riscos':
|
||||
if (sys.platform[:3] == 'win') or (sys.platform=='riscos'):
|
||||
raise unittest.SkipTest("Can't test signal on %s" % sys.platform)
|
||||
|
||||
process_pid = os.getpid()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue