changeset: 93913:1e985daa7be6 user: Victor Stinner date: Wed Dec 17 01:07:56 2014 +0100 files: Lib/test/test_selectors.py description: Issue #23009: Skip test_selectors.test_empty_select() on Windows diff -r 2ffaac4c8e53 -r 1e985daa7be6 Lib/test/test_selectors.py --- a/Lib/test/test_selectors.py Tue Dec 16 19:43:46 2014 +0200 +++ b/Lib/test/test_selectors.py Wed Dec 17 01:07:56 2014 +0100 @@ -4,6 +4,7 @@ import selectors import signal import socket +import sys from test import support from time import sleep import unittest @@ -316,6 +317,8 @@ self.assertEqual(bufs, [MSG] * NUM_SOCKETS) + @unittest.skipIf(sys.platform == 'win32', + 'select.select() cannot be used with empty fd sets') def test_empty_select(self): s = self.SELECTOR() self.addCleanup(s.close)