Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 307B

123456789101112131415
  1. # -*- coding: utf-8 -*-
  2. """
  3. kombu.async
  4. ===========
  5. Event loop implementation.
  6. """
  7. from __future__ import absolute_import
  8. from .hub import Hub, get_event_loop, set_event_loop
  9. from kombu.utils.eventio import READ, WRITE, ERR
  10. __all__ = ['READ', 'WRITE', 'ERR', 'Hub', 'get_event_loop', 'set_event_loop']