[Python-checkins] cpython (merge 3.5 -> default): Merge 3.5 (test_coroutines)

victor.stinner python-checkins at python.org
Sun Oct 11 04:54:04 EDT 2015


https://hg.python.org/cpython/rev/dee8afb28831
changeset:   98682:dee8afb28831
parent:      98680:3e2d679aaa82
parent:      98681:493845d905c5
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Sun Oct 11 10:53:50 2015 +0200
summary:
  Merge 3.5 (test_coroutines)

files:
  Lib/test/test_coroutines.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_coroutines.py b/Lib/test/test_coroutines.py
--- a/Lib/test/test_coroutines.py
+++ b/Lib/test/test_coroutines.py
@@ -1324,7 +1324,7 @@
     def test_asyncio_1(self):
         # asyncio cannot be imported when Python is compiled without thread
         # support
-        support.import_module('asyncio')
+        asyncio = support.import_module('asyncio')
 
         class MyException(Exception):
             pass

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


More information about the Python-checkins mailing list