X7ROOT File Manager
Current Path:
/usr/lib/python3.6/site-packages/pip/_vendor/distlib
usr
/
lib
/
python3.6
/
site-packages
/
pip
/
_vendor
/
distlib
/
📁
..
📄
__init__.py
(581 B)
📁
__pycache__
📁
_backport
📄
compat.py
(39.84 KB)
📄
database.py
(48.51 KB)
📄
index.py
(20.59 KB)
📄
locators.py
(49.82 KB)
📄
manifest.py
(14.46 KB)
📄
markers.py
(6.13 KB)
📄
metadata.py
(37.92 KB)
📄
resources.py
(10.51 KB)
📄
scripts.py
(14.87 KB)
📄
util.py
(52.35 KB)
📄
version.py
(23.16 KB)
📄
wheel.py
(38.2 KB)
Editing: __init__.py
# -*- coding: utf-8 -*- # # Copyright (C) 2012-2016 Vinay Sajip. # Licensed to the Python Software Foundation under a contributor agreement. # See LICENSE.txt and CONTRIBUTORS.txt. # import logging __version__ = '0.2.4' 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