summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-11-20 17:40:02 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2015-11-20 17:40:02 (GMT)
commitaa31c35e5539099174ac461bf2fde509adafcc9a (patch)
treec1f05f85a6a0403bfe42f9430ce496369f109f58 /Lib
parentb74a707cbd3f2efbb899fe67ee63402433ed3d8e (diff)
parentabe61079deeff97a8c614ddd73cc5b12530ecd6b (diff)
downloadcpython-aa31c35e5539099174ac461bf2fde509adafcc9a.zip
cpython-aa31c35e5539099174ac461bf2fde509adafcc9a.tar.gz
cpython-aa31c35e5539099174ac461bf2fde509adafcc9a.tar.bz2
Merge 3.5
Diffstat (limited to 'Lib')
-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 072fe2f..dff01d2 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)