Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 108.162.241.157
128 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
urllib3 /
util /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
1.13
KB
-rw-r--r--
connection.py
4.78
KB
-rw-r--r--
proxy.py
1.57
KB
-rw-r--r--
queue.py
471
B
-rw-r--r--
request.py
4.02
KB
-rw-r--r--
response.py
3.42
KB
-rw-r--r--
retry.py
20.92
KB
-rw-r--r--
ssl_.py
16.69
KB
-rw-r--r--
ssltransport.py
6.75
KB
-rw-r--r--
timeout.py
9.77
KB
-rw-r--r--
url.py
13.69
KB
-rw-r--r--
wait.py
5.28
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : queue.py
import collections import six from six.moves import queue if six.PY2: # Queue is imported for side effects on MS Windows. See issue #229. import Queue as _unused_module_Queue # noqa: F401 class LifoQueue(queue.Queue): def _init(self, _): self.queue = collections.deque() def _qsize(self, len=len): return len(self.queue) def _put(self, item): self.queue.append(item) def _get(self): return self.queue.pop()
Close