[Python-checkins] cpython: Fix test_selectors failure introduced by 39e7995f9ad1.

charles-francois.natali python-checkins at python.org
Sun Dec 8 10:11:54 CET 2013


http://hg.python.org/cpython/rev/01676a4c16ff
changeset:   87828:01676a4c16ff
user:        Charles-François Natali <cf.natali at gmail.com>
date:        Sun Dec 08 10:06:04 2013 +0100
summary:
  Fix test_selectors failure introduced by 39e7995f9ad1.

files:
  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
--- a/Lib/test/test_selectors.py
+++ b/Lib/test/test_selectors.py
@@ -109,6 +109,7 @@
         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)

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list