From: Benjamin Peterson Date: Tue, 27 Dec 2011 21:16:34 +0000 (-0600) Subject: propgate error in other conditions X-Git-Tag: v3.2.3rc1~232 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e61350d3a8769802a5cbe0895ec24cf0e1fc9b9;p=thirdparty%2FPython%2Fcpython.git propgate error in other conditions --- diff --git a/Lib/test/test_epoll.py b/Lib/test/test_epoll.py index 275e59834cc9..083fd7f79d97 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):