Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/zmq/backend/cython/__init__.py: 86%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

7 statements  

1"""Python bindings for core 0MQ objects.""" 

2 

3# Copyright (C) PyZMQ Developers 

4# Distributed under the terms of the Modified BSD License. 

5 

6from . import _zmq 

7 

8# mq not in __all__ 

9from ._zmq import * # noqa 

10from ._zmq import monitored_queue # noqa 

11 

12Message = _zmq.Frame 

13 

14__all__ = ["Message"] 

15__all__.extend(_zmq.__all__)