/opt/support/venv/lib/python3.13/site-packages/pip/_vendor/distlib
NameSizeModeActions
__pycache__/-0755rm
compat.py414670755editdlrm
LICENSE.txt145310755editdlrm
resources.py108200755editdlrm
scripts.py186120755editdlrm
t32.exe977920755editdlrm
t64-arm.exe1827840755editdlrm
t64.exe1080320755editdlrm
util.py666820755editdlrm
w32.exe916480755editdlrm
w64-arm.exe1684480755editdlrm
w64.exe1018880755editdlrm
__init__.py6250755editdlrm
Edit: /opt/support/venv/lib/python3.13/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())