X7ROOT File Manager
Current Path:
/opt/alt/python312/lib/python3.12/site-packages/pip/_vendor/distlib
opt
/
alt
/
python312
/
lib
/
python3.12
/
site-packages
/
pip
/
_vendor
/
distlib
/
ðŸ“
..
📄
__init__.py
(581 B)
ðŸ“
__pycache__
📄
compat.py
(40.29 KB)
📄
database.py
(50.49 KB)
📄
index.py
(20.35 KB)
📄
locators.py
(50.77 KB)
📄
manifest.py
(14.46 KB)
📄
markers.py
(4.94 KB)
📄
metadata.py
(38.87 KB)
📄
resources.py
(10.57 KB)
📄
scripts.py
(17.68 KB)
📄
util.py
(64.71 KB)
📄
version.py
(22.96 KB)
📄
wheel.py
(42.87 KB)
Editing: __init__.py
# -*- coding: utf-8 -*- # # Copyright (C) 2012-2022 Vinay Sajip. # Licensed to the Python Software Foundation under a contributor agreement. # See LICENSE.txt and CONTRIBUTORS.txt. # import logging __version__ = '0.3.6' 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())
Upload File
Create Folder