summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-10-11 08:53:50 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-10-11 08:53:50 (GMT)
commit5df7fddc0c678f10ae6f9995c516dd7091fd6cbc (patch)
treed076ba125ddef155e1dca128cec4df75a3116982 /Lib
parent5d28223be7674c03801b0578748d92b781b165f2 (diff)
parent718c984e6ed66fd7829af528db60479dbbe73475 (diff)
downloadcpython-5df7fddc0c678f10ae6f9995c516dd7091fd6cbc.zip
cpython-5df7fddc0c678f10ae6f9995c516dd7091fd6cbc.tar.gz
cpython-5df7fddc0c678f10ae6f9995c516dd7091fd6cbc.tar.bz2
Merge 3.5 (test_coroutines)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_coroutines.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_coroutines.py b/Lib/test/test_coroutines.py
index 71fbe82..b15e244 100644
--- a/Lib/test/test_coroutines.py
+++ b/Lib/test/test_coroutines.py
@@ -1324,7 +1324,7 @@ class CoroAsyncIOCompatTest(unittest.TestCase):
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