From 53dff0c059f21945d1fb2bf2b33621205137a455 Mon Sep 17 00:00:00 2001 From: Richard Oudkerk Date: Sun, 9 Dec 2012 16:05:20 +0000 Subject: [PATCH] Issue #16616: Enable test in test_poll which was (accidentally?) disabled --- Lib/test/test_poll.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/Lib/test/test_poll.py b/Lib/test/test_poll.py index 720cff3bd5b..d0e4f32f511 100644 --- a/Lib/test/test_poll.py +++ b/Lib/test/test_poll.py @@ -67,13 +67,11 @@ class PollTests(unittest.TestCase): self.assertEqual(bufs, [MSG] * NUM_PIPES) - def poll_unit_tests(self): + def test_poll_unit_tests(self): # returns NVAL for invalid file descriptor - FD = 42 - try: - os.close(FD) - except OSError: - pass + FD, w = os.pipe() + os.close(FD) + os.close(w) p = select.poll() p.register(FD) r = p.poll()