From ead8d0858b326ec8d902dc597aa3da23e4c5a82b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charles-Fran=C3=A7ois=20Natali?= Date: Sun, 8 Dec 2013 10:06:04 +0100 Subject: Fix test_selectors failure introduced by 39e7995f9ad1. --- Lib/test/test_selectors.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_selectors.py b/Lib/test/test_selectors.py index c8c16d5..34edd76 100644 --- a/Lib/test/test_selectors.py +++ b/Lib/test/test_selectors.py @@ -109,6 +109,7 @@ class BaseSelectorTestCase(unittest.TestCase): s.unregister(r) s.unregister(w) + @unittest.skipUnless(os.name == 'posix', "requires posix") def test_unregister_after_fd_close_and_reuse(self): s = self.SELECTOR() self.addCleanup(s.close) -- cgit v0.12