[Python-checkins] cpython (3.4): asyncio: Sync with github

yury.selivanov python-checkins at python.org
Fri Nov 20 12:44:20 EST 2015


https://hg.python.org/cpython/rev/ea1c1b88be89
changeset:   99233:ea1c1b88be89
branch:      3.4
parent:      99230:8636f0625408
user:        Yury Selivanov <yselivanov at sprymix.com>
date:        Fri Nov 20 12:39:43 2015 -0500
summary:
  asyncio: Sync with github

files:
  Lib/test/test_asyncio/test_base_events.py |  2 +-
  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
--- a/Lib/test/test_asyncio/test_base_events.py
+++ b/Lib/test/test_asyncio/test_base_events.py
@@ -782,7 +782,7 @@
         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)

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


More information about the Python-checkins mailing list