bpo-32314: Implement asyncio.run() (#4852)

This commit is contained in:
Yury Selivanov 2017-12-14 09:42:21 -05:00 committed by GitHub
parent eadad1b97f
commit 02a0a19206
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 173 additions and 9 deletions

View file

@ -11,6 +11,7 @@ from .events import *
from .futures import *
from .locks import *
from .protocols import *
from .runners import *
from .queues import *
from .streams import *
from .subprocess import *
@ -23,6 +24,7 @@ __all__ = (base_events.__all__ +
futures.__all__ +
locks.__all__ +
protocols.__all__ +
runners.__all__ +
queues.__all__ +
streams.__all__ +
subprocess.__all__ +