SILENT KILLERPanel

Current Path: > > usr > lib > python3.8 > 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: //usr/lib/python3.8/site-packages/pip/_vendor//urllib3/util

NameTypeSizeLast ModifiedActions
__pycache__ Directory - -
__init__.py File 1038 bytes October 17 2023 18:30:24.
connection.py File 4636 bytes October 17 2023 18:30:24.
queue.py File 497 bytes October 17 2023 18:30:24.
request.py File 3821 bytes October 17 2023 18:30:24.
response.py File 2573 bytes October 17 2023 18:30:24.
retry.py File 15450 bytes October 17 2023 18:30:24.
ssl_.py File 14163 bytes October 17 2023 18:30:24.
timeout.py File 9874 bytes October 17 2023 18:30:24.
url.py File 14313 bytes October 17 2023 18:30:24.
wait.py File 5406 bytes October 17 2023 18:30:24.

Reading File: //usr/lib/python3.8/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