mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-07-05 15:42:33 +00:00
first commit
This commit is contained in:
40
.venv/Lib/site-packages/zmq/backend/cython/__init__.py
Normal file
40
.venv/Lib/site-packages/zmq/backend/cython/__init__.py
Normal file
@ -0,0 +1,40 @@
|
||||
"""Python bindings for core 0MQ objects."""
|
||||
|
||||
# Copyright (C) PyZMQ Developers
|
||||
# Distributed under the terms of the Lesser GNU Public License (LGPL).
|
||||
|
||||
from . import (
|
||||
_device,
|
||||
_poll,
|
||||
_proxy_steerable,
|
||||
_version,
|
||||
context,
|
||||
error,
|
||||
message,
|
||||
socket,
|
||||
utils,
|
||||
)
|
||||
|
||||
__all__ = []
|
||||
for submod in (
|
||||
error,
|
||||
message,
|
||||
context,
|
||||
socket,
|
||||
utils,
|
||||
_poll,
|
||||
_version,
|
||||
_device,
|
||||
_proxy_steerable,
|
||||
):
|
||||
__all__.extend(submod.__all__)
|
||||
|
||||
from ._device import * # noqa
|
||||
from ._poll import * # noqa
|
||||
from ._proxy_steerable import * # noqa
|
||||
from ._version import * # noqa
|
||||
from .context import * # noqa
|
||||
from .error import * # noqa
|
||||
from .message import * # noqa
|
||||
from .socket import * # noqa
|
||||
from .utils import * # noqa
|
Reference in New Issue
Block a user