From: Charles-François Natali Date: Fri, 25 Oct 2013 15:49:47 +0000 (+0200) Subject: test_selectors: rename test_interrupted_retry() (since it doesn't actually X-Git-Tag: v3.4.0b1~547 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=052058fa147419d9b48b02f04a8d0fe6c27a74b1;p=thirdparty%2FPython%2Fcpython.git test_selectors: rename test_interrupted_retry() (since it doesn't actually retry on EINTR). --- diff --git a/Lib/test/test_selectors.py b/Lib/test/test_selectors.py index 6ce4d8a2169b..ca098519825c 100644 --- a/Lib/test/test_selectors.py +++ b/Lib/test/test_selectors.py @@ -279,7 +279,7 @@ class BaseSelectorTestCase(unittest.TestCase): @unittest.skipUnless(hasattr(signal, "alarm"), "signal.alarm() required for this test") - def test_interrupted_retry(self): + def test_select_interrupt(self): s = self.SELECTOR() self.addCleanup(s.close)