summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_select.py
diff options
context:
space:
mode:
authorJesus Cea <jcea@jcea.es>2012-10-05 01:36:11 (GMT)
committerJesus Cea <jcea@jcea.es>2012-10-05 01:36:11 (GMT)
commitf01d695ccdf47855aa9b5f2185a8ce349ed004aa (patch)
treef0384a68cb1b511792e4917e417a998324da0ce1 /Lib/test/test_select.py
parentfa7d5392d467d832e259aff3834bc19a3c005600 (diff)
downloadcpython-f01d695ccdf47855aa9b5f2185a8ce349ed004aa.zip
cpython-f01d695ccdf47855aa9b5f2185a8ce349ed004aa.tar.gz
cpython-f01d695ccdf47855aa9b5f2185a8ce349ed004aa.tar.bz2
Closes #16135: Removal of OS/2 support
Diffstat (limited to 'Lib/test/test_select.py')
-rw-r--r--Lib/test/test_select.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_select.py b/Lib/test/test_select.py
index 8d910ed..6a810c6 100644
--- a/Lib/test/test_select.py
+++ b/Lib/test/test_select.py
@@ -5,8 +5,7 @@ import sys
import unittest
from test import support
-@unittest.skipIf(sys.platform[:3] in ('win', 'os2') or \
- sys.platform=='riscos'),
+@unittest.skipIf((sys.platform[:3]=='win') or (sys.platform=='riscos'),
"can't easily test on this system")
class SelectTestCase(unittest.TestCase):