2013-10-17 17:40:50 -03:00
|
|
|
"""The asyncio package, tracking PEP 3156."""
|
|
|
|
|
2017-12-10 19:36:12 -04:00
|
|
|
# flake8: noqa
|
|
|
|
|
2013-10-17 17:40:50 -03:00
|
|
|
import sys
|
|
|
|
|
|
|
|
# This relies on each of the submodules having an __all__ variable.
|
2015-01-05 20:03:58 -04:00
|
|
|
from .base_events import *
|
2014-06-28 19:46:45 -03:00
|
|
|
from .coroutines import *
|
2013-10-17 17:40:50 -03:00
|
|
|
from .events import *
|
2018-09-11 14:13:04 -03:00
|
|
|
from .exceptions import *
|
2014-01-25 10:32:06 -04:00
|
|
|
from .futures import *
|
2013-10-17 17:40:50 -03:00
|
|
|
from .locks import *
|
|
|
|
from .protocols import *
|
2017-12-14 10:42:21 -04:00
|
|
|
from .runners import *
|
2014-01-25 10:32:06 -04:00
|
|
|
from .queues import *
|
2013-10-17 17:40:50 -03:00
|
|
|
from .streams import *
|
2014-02-01 17:49:59 -04:00
|
|
|
from .subprocess import *
|
2013-10-17 17:40:50 -03:00
|
|
|
from .tasks import *
|
2020-05-19 00:03:28 -03:00
|
|
|
from .threads import *
|
2014-01-25 10:32:06 -04:00
|
|
|
from .transports import *
|
2013-10-17 17:40:50 -03:00
|
|
|
|
2015-01-05 20:03:58 -04:00
|
|
|
__all__ = (base_events.__all__ +
|
|
|
|
coroutines.__all__ +
|
2014-06-28 19:46:45 -03:00
|
|
|
events.__all__ +
|
2018-09-11 14:13:04 -03:00
|
|
|
exceptions.__all__ +
|
2014-01-25 10:32:06 -04:00
|
|
|
futures.__all__ +
|
2013-10-17 17:40:50 -03:00
|
|
|
locks.__all__ +
|
|
|
|
protocols.__all__ +
|
2017-12-14 10:42:21 -04:00
|
|
|
runners.__all__ +
|
2014-01-25 10:32:06 -04:00
|
|
|
queues.__all__ +
|
2013-10-17 17:40:50 -03:00
|
|
|
streams.__all__ +
|
2014-02-01 17:49:59 -04:00
|
|
|
subprocess.__all__ +
|
2014-01-25 10:32:06 -04:00
|
|
|
tasks.__all__ +
|
2020-05-19 00:03:28 -03:00
|
|
|
threads.__all__ +
|
2014-01-25 10:32:06 -04:00
|
|
|
transports.__all__)
|
2014-07-18 07:44:25 -03:00
|
|
|
|
|
|
|
if sys.platform == 'win32': # pragma: no cover
|
|
|
|
from .windows_events import *
|
|
|
|
__all__ += windows_events.__all__
|
|
|
|
else:
|
|
|
|
from .unix_events import * # pragma: no cover
|
|
|
|
__all__ += unix_events.__all__
|