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_signal.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_signal.py')
-rw-r--r-- | Lib/test/test_signal.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_signal.py b/Lib/test/test_signal.py index 1b73634..c973be8 100644 --- a/Lib/test/test_signal.py +++ b/Lib/test/test_signal.py @@ -15,9 +15,6 @@ try: except ImportError: threading = None -if sys.platform == 'riscos': - raise unittest.SkipTest("Can't test signal on %s" % sys.platform) - class HandlerBCalled(Exception): pass |