OXIESEC PANEL
- Current Dir:
/
/
snap
/
core20
/
2582
/
usr
/
lib
/
python3
/
dist-packages
/
urllib3
/
util
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
04/29/2025 04:07:53 PM
rwxr-xr-x
📄
__init__.py
1.01 KB
01/21/2020 08:36:48 PM
rw-r--r--
📁
__pycache__
-
04/29/2025 04:07:53 PM
rwxr-xr-x
📄
connection.py
4.53 KB
01/21/2020 08:36:48 PM
rw-r--r--
📄
queue.py
470 bytes
10/16/2024 08:28:58 PM
rw-r--r--
📄
request.py
3.71 KB
10/16/2024 08:28:58 PM
rw-r--r--
📄
response.py
2.5 KB
10/16/2024 08:28:58 PM
rw-r--r--
📄
retry.py
15.12 KB
10/16/2024 08:28:58 PM
rw-r--r--
📄
ssl_.py
13.81 KB
10/16/2024 08:28:58 PM
rw-r--r--
📄
timeout.py
9.64 KB
01/21/2020 08:36:48 PM
rw-r--r--
📄
url.py
13.68 KB
10/16/2024 08:28:58 PM
rw-r--r--
📄
wait.py
5.28 KB
01/21/2020 08:36:48 PM
rw-r--r--
Editing: queue.py
Close
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()