logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

__init__.py (1108B)


  1. """The asyncio package, tracking PEP 3156."""
  2. # flake8: noqa
  3. import sys
  4. # This relies on each of the submodules having an __all__ variable.
  5. from .base_events import *
  6. from .coroutines import *
  7. from .events import *
  8. from .exceptions import *
  9. from .futures import *
  10. from .locks import *
  11. from .protocols import *
  12. from .runners import *
  13. from .queues import *
  14. from .streams import *
  15. from .subprocess import *
  16. from .tasks import *
  17. from .threads import *
  18. from .transports import *
  19. __all__ = (base_events.__all__ +
  20. coroutines.__all__ +
  21. events.__all__ +
  22. exceptions.__all__ +
  23. futures.__all__ +
  24. locks.__all__ +
  25. protocols.__all__ +
  26. runners.__all__ +
  27. queues.__all__ +
  28. streams.__all__ +
  29. subprocess.__all__ +
  30. tasks.__all__ +
  31. threads.__all__ +
  32. transports.__all__)
  33. if sys.platform == 'win32': # pragma: no cover
  34. from .windows_events import *
  35. __all__ += windows_events.__all__
  36. else:
  37. from .unix_events import * # pragma: no cover
  38. __all__ += unix_events.__all__