__init__.py 616 B

12345678910111213141516171819202122
  1. """CFFI backend (for PyPY)"""
  2. # Copyright (C) PyZMQ Developers
  3. # Distributed under the terms of the Modified BSD License.
  4. from zmq.backend.cffi import (constants, error, message, context, socket,
  5. _poll, devices, utils)
  6. __all__ = []
  7. for submod in (constants, error, message, context, socket,
  8. _poll, devices, utils):
  9. __all__.extend(submod.__all__)
  10. from .constants import *
  11. from .error import *
  12. from .message import *
  13. from .context import *
  14. from .socket import *
  15. from .devices import *
  16. from ._poll import *
  17. from ._cffi import zmq_version_info, ffi
  18. from .utils import *