Last active
February 13, 2016 20:51
-
-
Save AndreLouisCaron/db2965aae095f5c85dd5 to your computer and use it in GitHub Desktop.
asyncio await inconsistency
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This will print nothing because the set contains tasks, not f1 and f2. | |
import asyncio | |
async def foo(): | |
return 'foo' | |
async def bar(): | |
f1 = foo(); | |
f2 = foo(); | |
done, pending = await asyncio.wait( | |
[f1, f2], return_when=asyncio.ALL_COMPLETED, | |
) | |
assert len(pending) == 0 | |
assert len(done) == 2 | |
if f1 in done: | |
print('1:', f1.result()) | |
if f2 in done: | |
print('2:', f2.result()) | |
print('---') | |
asyncio.get_event_loop().run_until_complete(bar()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
async def foo(): | |
return 'foo' | |
async def bar(): | |
f = foo() | |
print('1:', await f) | |
print('2:', await f) | |
asyncio.get_event_loop().run_until_complete(bar()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
async def foo(): | |
return 'foo' | |
async def bar(): | |
f = asyncio.ensure_future(foo()) | |
print('1:', await f) | |
print('2:', await f) | |
asyncio.get_event_loop().run_until_complete(bar()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
async def foo(): | |
return 'foo' | |
async def bar(): | |
f = asyncio.get_event_loop().create_task(foo()) | |
print('1:', await f) | |
print('2:', await f) | |
asyncio.get_event_loop().run_until_complete(bar()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment