File size: 322 Bytes
d1ceb73 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
"""Python bindings for core 0MQ objects."""
# Copyright (C) PyZMQ Developers
# Distributed under the terms of the Modified BSD License.
from . import _zmq
# mq not in __all__
from ._zmq import * # noqa
from ._zmq import monitored_queue # noqa
Message = _zmq.Frame
__all__ = ["Message"]
__all__.extend(_zmq.__all__)
|