003 File Manager
Current Path:
/usr/local/lib/python3.8/site-packages/zmq/backend/cffi
usr
/
local
/
lib
/
python3.8
/
site-packages
/
zmq
/
backend
/
cffi
/
📁
..
📄
__init__.py
(874 B)
📁
__pycache__
📄
_cdefs.h
(2.56 KB)
📄
_poll.py
(2.88 KB)
📄
constants.py
(545 B)
📄
context.py
(1.87 KB)
📄
devices.py
(1.53 KB)
📄
error.py
(362 B)
📄
message.py
(6.41 KB)
📄
socket.py
(10.79 KB)
📄
utils.py
(2.11 KB)
Editing: error.py
"""zmq error functions""" # Copyright (C) PyZMQ Developers # Distributed under the terms of the Modified BSD License. from ._cffi import lib as 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']
Upload File
Create Folder