Commit 6215d5f6 authored by Stefan Behnel's avatar Stefan Behnel

test comments

parent 49b732d4
......@@ -75,12 +75,12 @@ def runloop(task):
result = loop.run_until_complete(task())
assert 3 == result, result
import import_asyncio # patches Generator into ABCs if necessary
import import_asyncio # patches Generator into ABCs if missing
runloop(import_asyncio.wait3) # 1a)
import from_asyncio_import
runloop(from_asyncio_import.wait3) # 1b)
import async_def # patches Awaitable/Coroutine into ABCs if necessary
import async_def # patches Awaitable/Coroutine into ABCs if missing
if ASYNCIO_SUPPORTS_COROUTINE:
runloop(async_def.wait3) # 1c)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment