Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib64 /
python3.6 /
site-packages /
zmq /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2022-03-29 05:07
asyncio
[ DIR ]
drwxr-xr-x
2022-03-29 05:07
auth
[ DIR ]
drwxr-xr-x
2022-03-29 05:07
backend
[ DIR ]
drwxr-xr-x
2022-03-29 05:07
devices
[ DIR ]
drwxr-xr-x
2022-03-29 05:07
eventloop
[ DIR ]
drwxr-xr-x
2022-03-29 05:07
green
[ DIR ]
drwxr-xr-x
2022-03-29 05:07
log
[ DIR ]
drwxr-xr-x
2022-03-29 05:07
ssh
[ DIR ]
drwxr-xr-x
2022-03-29 05:07
sugar
[ DIR ]
drwxr-xr-x
2022-03-29 05:07
utils
[ DIR ]
drwxr-xr-x
2022-03-29 05:07
__init__.py
2.45
KB
-rw-r--r--
2018-02-10 08:02
_future.py
16.63
KB
-rw-r--r--
2018-02-10 08:02
decorators.py
5.12
KB
-rw-r--r--
2018-02-10 08:02
error.py
5.14
KB
-rw-r--r--
2018-02-10 08:02
Save
Rename
"""Python bindings for 0MQ.""" # Copyright (C) PyZMQ Developers # Distributed under the terms of the Modified BSD License. # load bundled libzmq, if there is one: def _load_libzmq(): """load bundled libzmq if there is one""" import sys, ctypes, platform, os dlopen = hasattr(sys, 'getdlopenflags') # unix-only # RTLD flags are added to os in Python 3 # get values from os because ctypes values are WRONG on pypy PYPY = platform.python_implementation().lower() == 'pypy' if dlopen: dlflags = sys.getdlopenflags() # set RTLD_GLOBAL, unset RTLD_LOCAL flags = ctypes.RTLD_GLOBAL | dlflags # ctypes.RTLD_LOCAL is 0 on pypy, which is *wrong* flags &= ~ getattr(os, 'RTLD_LOCAL', 4) # pypy on darwin needs RTLD_LAZY for some reason if PYPY and sys.platform == 'darwin': flags |= getattr(os, 'RTLD_LAZY', 1) flags &= ~ getattr(os, 'RTLD_NOW', 2) sys.setdlopenflags(flags) try: from . import libzmq except ImportError: pass else: # store libzmq as zmq._libzmq for backward-compat globals()['_libzmq'] = libzmq if PYPY: # some versions of pypy (5.3 < ? < 5.8) needs explicit CDLL load for some reason, # otherwise symbols won't be globally available # do this unconditionally because it should be harmless (?) ctypes.CDLL(libzmq.__file__, ctypes.RTLD_GLOBAL) finally: if dlopen: sys.setdlopenflags(dlflags) _load_libzmq() # zmq top-level imports from zmq import backend from zmq.backend import * from zmq import sugar from zmq.sugar import * def get_includes(): """Return a list of directories to include for linking against pyzmq with cython.""" from os.path import join, dirname, abspath, pardir, exists base = dirname(__file__) parent = abspath(join(base, pardir)) includes = [ parent ] + [ join(parent, base, subdir) for subdir in ('utils',) ] if exists(join(parent, base, 'include')): includes.append(join(parent, base, 'include')) return includes def get_library_dirs(): """Return a list of directories used to link against pyzmq's bundled libzmq.""" from os.path import join, dirname, abspath, pardir base = dirname(__file__) parent = abspath(join(base, pardir)) return [ join(parent, base) ] COPY_THRESHOLD = 65536 __all__ = ['get_includes', 'COPY_THRESHOLD'] + sugar.__all__ + backend.__all__