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

13 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2023-07-01 06:54 +0000

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

2 

3# Copyright (C) PyZMQ Developers 

4# Distributed under the terms of the Lesser GNU Public License (LGPL). 

5 

6from . import ( 

7 _device, 

8 _poll, 

9 _proxy_steerable, 

10 _version, 

11 context, 

12 error, 

13 message, 

14 socket, 

15 utils, 

16) 

17 

18__all__ = [] 

19for submod in ( 

20 error, 

21 message, 

22 context, 

23 socket, 

24 utils, 

25 _poll, 

26 _version, 

27 _device, 

28 _proxy_steerable, 

29): 

30 __all__.extend(submod.__all__) 

31 

32from ._device import * # noqa 

33from ._poll import * # noqa 

34from ._proxy_steerable import * # noqa 

35from ._version import * # noqa 

36from .context import * # noqa 

37from .error import * # noqa 

38from .message import * # noqa 

39from .socket import * # noqa 

40from .utils import * # noqa