Skip to content

Instantly share code, notes, and snippets.

@dstufft
Created July 12, 2014 17:34
Show Gist options
  • Save dstufft/d9b770732bbe901d35d8 to your computer and use it in GitHub Desktop.
Save dstufft/d9b770732bbe901d35d8 to your computer and use it in GitHub Desktop.
def sync(coro):
if asyncio.iscoroutine(coro):
try:
next(coro)
except StopIteration as exc:
return exc.value
else:
return coro
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment