diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-01-06 00:03:58 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-01-06 00:03:58 (GMT) |
commit | 8c1a4a2326e8a81bd4cc4fb81e51c003059cd687 (patch) | |
tree | 201eb0b7d1a40ce8c01540cc29435a2e344b636f /Lib/asyncio/__init__.py | |
parent | 63b55580fbe496204100e548ad41a10d933cc470 (diff) | |
download | cpython-8c1a4a2326e8a81bd4cc4fb81e51c003059cd687.zip cpython-8c1a4a2326e8a81bd4cc4fb81e51c003059cd687.tar.gz cpython-8c1a4a2326e8a81bd4cc4fb81e51c003059cd687.tar.bz2 |
Issue #23046: Expose the BaseEventLoop class in the asyncio namespace
Diffstat (limited to 'Lib/asyncio/__init__.py')
-rw-r--r-- | Lib/asyncio/__init__.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/asyncio/__init__.py b/Lib/asyncio/__init__.py index 3911fb4..011466b 100644 --- a/Lib/asyncio/__init__.py +++ b/Lib/asyncio/__init__.py @@ -18,6 +18,7 @@ if sys.platform == 'win32': import _overlapped # Will also be exported. # This relies on each of the submodules having an __all__ variable. +from .base_events import * from .coroutines import * from .events import * from .futures import * @@ -29,7 +30,8 @@ from .subprocess import * from .tasks import * from .transports import * -__all__ = (coroutines.__all__ + +__all__ = (base_events.__all__ + + coroutines.__all__ + events.__all__ + futures.__all__ + locks.__all__ + |