SILENT KILLERPanel

Current Path: > > opt > alt > python37 > lib > python3.7 > site-packages > pip > _vendor > urllib3 > util


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //opt/alt/python37/lib/python3.7/site-packages/pip/_vendor/urllib3/util

NameTypeSizeLast ModifiedActions
__pycache__ Directory - -
__init__.py File 1038 bytes November 13 2023 21:31:06.
connection.py File 4637 bytes November 13 2023 21:31:06.
queue.py File 497 bytes November 13 2023 21:31:06.
request.py File 3815 bytes November 13 2023 21:31:06.
response.py File 2573 bytes November 13 2023 21:31:06.
retry.py File 15543 bytes November 13 2023 21:31:06.
ssl_.py File 14523 bytes November 13 2023 21:31:06.
timeout.py File 9947 bytes November 13 2023 21:31:06.
url.py File 13981 bytes November 13 2023 21:31:06.
wait.py File 5406 bytes November 13 2023 21:31:06.

Reading File: //opt/alt/python37/lib/python3.7/site-packages/pip/_vendor/urllib3/util/queue.py

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()

SILENT KILLER Tool