[Python-checkins] cpython: test_selectors: rename test_interrupted_retry() (since it doesn't actually

charles-francois.natali python-checkins at python.org
Fri Oct 25 17:56:52 CEST 2013


http://hg.python.org/cpython/rev/726191fafd81
changeset:   86622:726191fafd81
user:        Charles-François Natali <cf.natali at gmail.com>
date:        Fri Oct 25 17:49:47 2013 +0200
summary:
  test_selectors: rename test_interrupted_retry() (since it doesn't actually
retry on EINTR).

files:
  Lib/test/test_selectors.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_selectors.py b/Lib/test/test_selectors.py
--- a/Lib/test/test_selectors.py
+++ b/Lib/test/test_selectors.py
@@ -279,7 +279,7 @@
 
     @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)
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list