summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_select.py
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2012-11-18 23:59:39 (GMT)
committerChristian Heimes <christian@cheimes.de>2012-11-18 23:59:39 (GMT)
commitde0b962998af69dff474ec99b7627bcee496d48e (patch)
treea48df8f829f399deff97d68d04dbe0397748984b /Lib/test/test_select.py
parent8473e5740ffe15134a73f1553b5980de4ce2c619 (diff)
downloadcpython-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.py2
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):