summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-12-27 21:16:34 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-12-27 21:16:34 (GMT)
commit0e61350d3a8769802a5cbe0895ec24cf0e1fc9b9 (patch)
tree1cb2c2685a855040caa6ed3d7bf2681ffc3e263f /Lib
parent1532c8f9a737c4ae03b5b759ad7b80b1808ec326 (diff)
downloadcpython-0e61350d3a8769802a5cbe0895ec24cf0e1fc9b9.zip
cpython-0e61350d3a8769802a5cbe0895ec24cf0e1fc9b9.tar.gz
cpython-0e61350d3a8769802a5cbe0895ec24cf0e1fc9b9.tar.bz2
propgate error in other conditions
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_epoll.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_epoll.py b/Lib/test/test_epoll.py
index 275e598..083fd7f 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):