projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
05842bb
)
skip this test on windows, too #8459
author
Benjamin Peterson
<benjamin@python.org>
Tue, 20 Apr 2010 21:02:36 +0000
(21:02 +0000)
committer
Benjamin Peterson
<benjamin@python.org>
Tue, 20 Apr 2010 21:02:36 +0000
(21:02 +0000)
Lib/test/test_select.py
patch
|
blob
|
history
diff --git
a/Lib/test/test_select.py
b/Lib/test/test_select.py
index f596862d154bfa0524529e3c612ec4f36d4aa310..6cfb96ada56873e69cb7315b34ef2054e7452094 100644
(file)
--- a/
Lib/test/test_select.py
+++ b/
Lib/test/test_select.py
@@
-20,6
+20,10
@@
class SelectTestCase(unittest.TestCase):
self.assertRaises(TypeError, select.select, [], [], [], "not a number")
def test_returned_list_identity(self):
+ if sys.platform[:3] in ('win', 'mac', 'os2'):
+ if test_support.verbose:
+ print "can't easily test on this system"
+ return
# See issue #8329
r, w, x = select.select([], [], [], 1)
self.assertFalse(r is w)