mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
Close #25367: Fix test_coroutines()
Fix usage of support.import_module('asyncio'): store the result in an 'asyncio'
variable.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user