diff -r 1e985daa7be6 Lib/asyncio/__init__.py --- a/Lib/asyncio/__init__.py Wed Dec 17 01:07:56 2014 +0100 +++ b/Lib/asyncio/__init__.py Wed Dec 17 01:15:54 2014 +0100 @@ -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__ + diff -r 1e985daa7be6 Lib/asyncio/base_events.py --- a/Lib/asyncio/base_events.py Wed Dec 17 01:07:56 2014 +0100 +++ b/Lib/asyncio/base_events.py Wed Dec 17 01:15:54 2014 +0100 @@ -34,7 +34,7 @@ from .coroutines import coroutine from .log import logger -__all__ = ['BaseEventLoop', 'Server'] +__all__ = ['BaseEventLoop'] # Argument for default thread pool executor creation.