X7ROOT File Manager
Current Path:
/opt/alt/python37/lib/python3.7/site-packages/pip/_vendor/distlib
opt
/
alt
/
python37
/
lib
/
python3.7
/
site-packages
/
pip
/
_vendor
/
distlib
/
ðŸ“
..
📄
__init__.py
(581 B)
ðŸ“
__pycache__
ðŸ“
_backport
📄
compat.py
(40.44 KB)
📄
database.py
(49.86 KB)
📄
index.py
(20.57 KB)
📄
locators.py
(50.88 KB)
📄
manifest.py
(14.46 KB)
📄
markers.py
(4.28 KB)
📄
metadata.py
(38.05 KB)
📄
resources.py
(10.51 KB)
📄
scripts.py
(16.78 KB)
📄
t32.exe
(94.5 KB)
📄
t64.exe
(103.5 KB)
📄
util.py
(58.44 KB)
📄
version.py
(22.84 KB)
📄
w32.exe
(88 KB)
📄
w64.exe
(97.5 KB)
📄
wheel.py
(40.18 KB)
Editing: __init__.py
# -*- coding: utf-8 -*- # # Copyright (C) 2012-2019 Vinay Sajip. # Licensed to the Python Software Foundation under a contributor agreement. # See LICENSE.txt and CONTRIBUTORS.txt. # import logging __version__ = '0.3.1' 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