You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ORPA-pyOpenRPA/Resources/WPy64-3720/python-3.7.2.amd64/Lib/site-packages/zmq/backend/cffi/constants.py

17 lines
357 B

# coding: utf-8
"""zmq constants"""
from ._cffi import C, c_constant_names
from zmq.utils.constant_names import all_names
g = globals()
for cname in c_constant_names:
if cname.startswith("ZMQ_"):
name = cname[4:]
else:
name = cname
g[name] = getattr(C, cname)
DRAFT_API = C.PYZMQ_DRAFT_API
__all__ = ['DRAFT_API'] + all_names