mirror of
https://github.com/python/cpython.git
synced 2025-08-19 00:00:48 +00:00
skip this test on windows, too #8459
This commit is contained in:
parent
05842bbe1a
commit
dbcf740f3f
1 changed files with 4 additions and 0 deletions
|
@ -20,6 +20,10 @@ class SelectTestCase(unittest.TestCase):
|
||||||
self.assertRaises(TypeError, select.select, [], [], [], "not a number")
|
self.assertRaises(TypeError, select.select, [], [], [], "not a number")
|
||||||
|
|
||||||
def test_returned_list_identity(self):
|
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
|
# See issue #8329
|
||||||
r, w, x = select.select([], [], [], 1)
|
r, w, x = select.select([], [], [], 1)
|
||||||
self.assertFalse(r is w)
|
self.assertFalse(r is w)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue