From: Benjamin Peterson Date: Tue, 27 Dec 2011 21:16:34 +0000 (-0600) Subject: propgate error in other conditions X-Git-Tag: v2.7.3rc1~206 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c32d5cb9ec1182870c20ef794d29b24ce4ee79e8;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 216e2c7134a5..b66d9ea7ac48 100644 --- a/Lib/test/test_epoll.py +++ b/Lib/test/test_epoll.py @@ -36,6 +36,7 @@ try: except IOError, e: if e.errno == errno.ENOSYS: raise unittest.SkipTest("kernel doesn't support epoll()") + raise class TestEPoll(unittest.TestCase):