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 /
sugar /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2022-03-29 05:07
__init__.py
738
B
-rw-r--r--
2018-02-10 08:02
attrsettr.py
1.59
KB
-rw-r--r--
2018-02-10 08:02
constants.py
2.41
KB
-rw-r--r--
2018-02-10 08:02
context.py
6.12
KB
-rw-r--r--
2018-02-10 08:02
frame.py
2.89
KB
-rw-r--r--
2018-02-10 08:02
poll.py
5.2
KB
-rw-r--r--
2018-02-10 08:02
socket.py
24.24
KB
-rw-r--r--
2018-02-10 08:02
stopwatch.py
915
B
-rw-r--r--
2018-02-10 08:02
tracker.py
3.67
KB
-rw-r--r--
2018-02-10 08:02
version.py
1.2
KB
-rw-r--r--
2018-02-10 08:02
Save
Rename
"""Deprecated Stopwatch implementation""" # Copyright (c) PyZMQ Development Team. # Distributed under the terms of the Modified BSD License. class Stopwatch(object): """Deprecated zmq.Stopwatch implementation You can use Python's builtin timers (time.monotonic, etc.). """ def __init__(self): import warnings warnings.warn("zmq.Stopwatch is deprecated. Use stdlib time.monotonic and friends instead", DeprecationWarning, stacklevel=2, ) self._start = 0 import time try: self._monotonic = time.monotonic except AttributeError: self._monotonic = time.time def start(self): """Start the counter""" self._start = self._monotonic() def stop(self): """Return time since start in microseconds""" stop = self._monotonic() return int(1e6 * (stop - self._start))