summaryrefslogtreecommitdiff
path: root/Lib/test/test_asyncio/test_base_events.py
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-11-20 12:39:43 -0500
committerYury Selivanov <yselivanov@sprymix.com>2015-11-20 12:39:43 -0500
commitdc669dedab0d88f9d25d0e4129bbdd44a0e548df (patch)
tree4e3e57e626630bb52d58e2857c6d7ea810aebefd /Lib/test/test_asyncio/test_base_events.py
parent128ce1ce1eed9188488da60d883aa16dcd60bf48 (diff)
downloadcpython-dc669dedab0d88f9d25d0e4129bbdd44a0e548df.tar.gz
asyncio: Sync with github
Diffstat (limited to 'Lib/test/test_asyncio/test_base_events.py')
-rw-r--r--Lib/test/test_asyncio/test_base_events.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_base_events.py b/Lib/test/test_asyncio/test_base_events.py
index 072fe2f93e..dff01d2c11 100644
--- a/Lib/test/test_asyncio/test_base_events.py
+++ b/Lib/test/test_asyncio/test_base_events.py
@@ -782,7 +782,7 @@ class BaseEventLoopTests(test_utils.TestCase):
self.loop._selector.select.return_value = (event_sentinel,)
for i in range(1, 3):
- with self.subTest('Loop %d/2' % i):
+ # with self.subTest('Loop %d/2' % i): # Not in Python 3.3.
self.loop.call_soon(self.loop.stop)
self.loop.run_forever()
self.assertEqual(callcount, 1)