OXIESEC PANEL
- Current Dir:
/
/
opt
/
alt
/
python311
/
lib
/
python3.11
/
site-packages
/
pip
/
_vendor
/
urllib3
/
util
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/08/2024 06:29:58 PM
rwxr-xr-x
📄
__init__.py
1.13 KB
11/13/2023 10:00:31 PM
rw-r--r--
📁
__pycache__
-
05/08/2024 06:29:58 PM
rwxr-xr-x
📄
connection.py
4.8 KB
11/13/2023 10:00:31 PM
rw-r--r--
📄
proxy.py
1.57 KB
11/13/2023 10:00:31 PM
rw-r--r--
📄
queue.py
498 bytes
11/13/2023 10:00:31 PM
rw-r--r--
📄
request.py
4.03 KB
11/13/2023 10:00:31 PM
rw-r--r--
📄
response.py
3.43 KB
11/13/2023 10:00:31 PM
rw-r--r--
📄
retry.py
20.89 KB
11/13/2023 10:00:31 PM
rw-r--r--
📄
ssl_.py
16.77 KB
11/13/2023 10:00:31 PM
rw-r--r--
📄
ssltransport.py
6.77 KB
11/13/2023 10:00:31 PM
rw-r--r--
📄
timeout.py
9.77 KB
11/13/2023 10:00:31 PM
rw-r--r--
📄
url.py
13.72 KB
11/13/2023 10:00:31 PM
rw-r--r--
📄
wait.py
5.28 KB
11/13/2023 10:00:31 PM
rw-r--r--
Editing: queue.py
Close
import collections from ..packages import six from ..packages.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()