summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-11-20 12:40:02 -0500
committerYury Selivanov <yselivanov@sprymix.com>2015-11-20 12:40:02 -0500
commitaa31c35e5539099174ac461bf2fde509adafcc9a (patch)
treec1f05f85a6a0403bfe42f9430ce496369f109f58
parentb74a707cbd3f2efbb899fe67ee63402433ed3d8e (diff)
parentabe61079deeff97a8c614ddd73cc5b12530ecd6b (diff)
downloadcpython-git-aa31c35e5539099174ac461bf2fde509adafcc9a.tar.gz
Merge 3.5
-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)