/usr/lib/rads/venv/lib/python3.13/site-packages/pip/_vendor/distlib
NameSizeModeActions
__pycache__/-0755rm
compat.py406050644editdlrm
LICENSE.txt145310644editdlrm
resources.py113500644editdlrm
scripts.py188350644editdlrm
t32.exe977920644editdlrm
t64-arm.exe1827840644editdlrm
t64.exe1080320644editdlrm
util.py681670644editdlrm
w32.exe916480644editdlrm
w64-arm.exe1684480644editdlrm
w64.exe1018880644editdlrm
__init__.py6250644editdlrm
Edit: /usr/lib/rads/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.2' 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())