/opt/imh-python/lib/python3.9/site-packages/zmq/backend/cffi
NameSizeModeActions
__pycache__/-0755rm
constants.py3570644editdlrm
context.py19160644editdlrm
devices.py16440644editdlrm
error.py3530644editdlrm
message.py13880644editdlrm
socket.py91260644editdlrm
utils.py21670644editdlrm
_cdefs.h22160644editdlrm
_cffi.py38820644editdlrm
_poll.py28320644editdlrm
_verify.c1050644editdlrm
__init__.py6160644editdlrm
Edit: /opt/imh-python/lib/python3.9/site-packages/zmq/backend/cffi/error.py (353B)
"""zmq error functions""" # Copyright (C) PyZMQ Developers # Distributed under the terms of the Modified BSD License. from ._cffi import C, ffi def strerror(errno): s = ffi.string(C.zmq_strerror(errno)) if not isinstance(s, str): # py3 s = s.decode() return s zmq_errno = C.zmq_errno __all__ = ['strerror', 'zmq_errno']