diff options
author | Charles-François Natali <cf.natali@gmail.com> | 2013-12-08 09:06:04 (GMT) |
---|---|---|
committer | Charles-François Natali <cf.natali@gmail.com> | 2013-12-08 09:06:04 (GMT) |
commit | ead8d0858b326ec8d902dc597aa3da23e4c5a82b (patch) | |
tree | 6955b148f77835c1d76f3f1cd94f13f342bddf3b /Lib/test/test_selectors.py | |
parent | f491f92529080f6ebe53e4a54ad1fbf4b6f2a57c (diff) | |
download | cpython-ead8d0858b326ec8d902dc597aa3da23e4c5a82b.zip cpython-ead8d0858b326ec8d902dc597aa3da23e4c5a82b.tar.gz cpython-ead8d0858b326ec8d902dc597aa3da23e4c5a82b.tar.bz2 |
Fix test_selectors failure introduced by 39e7995f9ad1.
Diffstat (limited to 'Lib/test/test_selectors.py')
-rw-r--r-- | Lib/test/test_selectors.py | 1 |
1 files changed, 1 insertions, 0 deletions
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) |