diff options
author | Christian Heimes <christian@cheimes.de> | 2012-11-18 23:59:39 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2012-11-18 23:59:39 (GMT) |
commit | de0b962998af69dff474ec99b7627bcee496d48e (patch) | |
tree | a48df8f829f399deff97d68d04dbe0397748984b /Lib/test/test_threadsignals.py | |
parent | 8473e5740ffe15134a73f1553b5980de4ce2c619 (diff) | |
download | cpython-de0b962998af69dff474ec99b7627bcee496d48e.zip cpython-de0b962998af69dff474ec99b7627bcee496d48e.tar.gz cpython-de0b962998af69dff474ec99b7627bcee496d48e.tar.bz2 |
Remove sys.platform == 'riscos' checks from some Python and test files. #16501
Diffstat (limited to 'Lib/test/test_threadsignals.py')
-rw-r--r-- | Lib/test/test_threadsignals.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_threadsignals.py b/Lib/test/test_threadsignals.py index 3a0a493..b1004e6 100644 --- a/Lib/test/test_threadsignals.py +++ b/Lib/test/test_threadsignals.py @@ -8,7 +8,7 @@ from test.support import run_unittest, import_module thread = import_module('_thread') import time -if (sys.platform[:3] == 'win') or (sys.platform=='riscos'): +if (sys.platform[:3] == 'win'): raise unittest.SkipTest("Can't test signal on %s" % sys.platform) process_pid = os.getpid() |