/opt/imunify360/venv/lib/python3.11/site-packages/pip/_vendor/distlib
NameSizeModeActions
__pycache__/-0755rm
compat.py414670644editdlrm
LICENSE.txt145310644editdlrm
resources.py108200644editdlrm
scripts.py186120644editdlrm
t32.exe977920644editdlrm
t64-arm.exe1827840644editdlrm
t64.exe1080320644editdlrm
util.py666820644editdlrm
w32.exe916480644editdlrm
w64-arm.exe1684480644editdlrm
w64.exe1018880644editdlrm
__init__.py6250644editdlrm
Edit: /opt/imunify360/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__init__.py (625B)
# -*- coding: utf-8 -*- # # Copyright (C) 2012-2024 Vinay Sajip. # Licensed to the Python Software Foundation under a contributor agreement. # See LICENSE.txt and CONTRIBUTORS.txt. # import logging __version__ = '0.4.0' class DistlibException(Exception): pass try: from logging import NullHandler except ImportError: # pragma: no cover class NullHandler(logging.Handler): def handle(self, record): pass def emit(self, record): pass def createLock(self): self.lock = None logger = logging.getLogger(__name__) logger.addHandler(NullHandler())