diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-10-11 08:53:50 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-10-11 08:53:50 (GMT) |
commit | 5df7fddc0c678f10ae6f9995c516dd7091fd6cbc (patch) | |
tree | d076ba125ddef155e1dca128cec4df75a3116982 | |
parent | 5d28223be7674c03801b0578748d92b781b165f2 (diff) | |
parent | 718c984e6ed66fd7829af528db60479dbbe73475 (diff) | |
download | cpython-5df7fddc0c678f10ae6f9995c516dd7091fd6cbc.zip cpython-5df7fddc0c678f10ae6f9995c516dd7091fd6cbc.tar.gz cpython-5df7fddc0c678f10ae6f9995c516dd7091fd6cbc.tar.bz2 |
Merge 3.5 (test_coroutines)
-rw-r--r-- | 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 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 |