http://hg.python.org/cpython/rev/4964712a7269 changeset: 74184:4964712a7269 branch: 3.2 parent: 74178:f0197f1d158e user: Benjamin Peterson <benjamin at python.org> date: Tue Dec 27 15:16:34 2011 -0600 summary: propgate error in other conditions files: 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 --- a/Lib/test/test_epoll.py +++ b/Lib/test/test_epoll.py @@ -36,6 +36,7 @@ except IOError as e: if e.errno == errno.ENOSYS: raise unittest.SkipTest("kernel doesn't support epoll()") + raise class TestEPoll(unittest.TestCase): -- Repository URL: http://hg.python.org/cpython