summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_selectors.py
diff options
context:
space:
mode:
authorCharles-François Natali <cf.natali@gmail.com>2013-10-25 15:49:47 (GMT)
committerCharles-François Natali <cf.natali@gmail.com>2013-10-25 15:49:47 (GMT)
commit052058fa147419d9b48b02f04a8d0fe6c27a74b1 (patch)
treedd4223865d23ffcdf0ef30131d64113e16c01f1e /Lib/test/test_selectors.py
parent23005084ad2dacc8539c2c2a8d191a5255e3ee0b (diff)
downloadcpython-052058fa147419d9b48b02f04a8d0fe6c27a74b1.zip
cpython-052058fa147419d9b48b02f04a8d0fe6c27a74b1.tar.gz
cpython-052058fa147419d9b48b02f04a8d0fe6c27a74b1.tar.bz2
test_selectors: rename test_interrupted_retry() (since it doesn't actually
retry on EINTR).
Diffstat (limited to 'Lib/test/test_selectors.py')
-rw-r--r--Lib/test/test_selectors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_selectors.py b/Lib/test/test_selectors.py
index 6ce4d8a..ca09851 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)