summaryrefslogtreecommitdiff
path: root/asyncio/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'asyncio/__init__.py')
-rw-r--r--asyncio/__init__.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/asyncio/__init__.py b/asyncio/__init__.py
index 3911fb4..011466b 100644
--- a/asyncio/__init__.py
+++ b/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__ +