diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-12-27 21:17:15 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-12-27 21:17:15 (GMT) |
commit | a5f6f2aba34dcf8f2a7e899aff0d7c37218502e9 (patch) | |
tree | af53ac85eb755a57da0661f44ab0aa90a6129447 /Lib/test/test_epoll.py | |
parent | 2fb9ae9dfc5a6830d902332ba93b13387e292ddb (diff) | |
parent | 0e61350d3a8769802a5cbe0895ec24cf0e1fc9b9 (diff) | |
download | cpython-a5f6f2aba34dcf8f2a7e899aff0d7c37218502e9.zip cpython-a5f6f2aba34dcf8f2a7e899aff0d7c37218502e9.tar.gz cpython-a5f6f2aba34dcf8f2a7e899aff0d7c37218502e9.tar.bz2 |
merge 3.2
Diffstat (limited to 'Lib/test/test_epoll.py')
-rw-r--r-- | Lib/test/test_epoll.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_epoll.py b/Lib/test/test_epoll.py index b899b6e..de8299e 100644 --- a/Lib/test/test_epoll.py +++ b/Lib/test/test_epoll.py @@ -36,6 +36,7 @@ try: except IOError as e: if e.errno == errno.ENOSYS: raise unittest.SkipTest("kernel doesn't support epoll()") + raise class TestEPoll(unittest.TestCase): |