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_select.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_select.py')
-rw-r--r-- | Lib/test/test_select.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_select.py b/Lib/test/test_select.py index 496709c..dee5921 100644 --- a/Lib/test/test_select.py +++ b/Lib/test/test_select.py @@ -5,7 +5,7 @@ import sys import unittest from test import support -@unittest.skipIf((sys.platform[:3]=='win') or (sys.platform=='riscos'), +@unittest.skipIf((sys.platform[:3]=='win'), "can't easily test on this system") class SelectTestCase(unittest.TestCase): |