X7ROOT File Manager
Current Path:
/lib/python2.7/site-packages/pip/_vendor/distlib
lib
/
python2.7
/
site-packages
/
pip
/
_vendor
/
distlib
/
??
..
??
__init__.py
(581 B)
??
__init__.pyc
(1.31 KB)
??
__init__.pyo
(1.31 KB)
??
_backport
??
compat.py
(39.84 KB)
??
compat.pyc
(38.78 KB)
??
compat.pyo
(38.73 KB)
??
database.py
(48.51 KB)
??
database.pyc
(48.19 KB)
??
database.pyo
(48.19 KB)
??
index.py
(20.59 KB)
??
index.pyc
(19.59 KB)
??
index.pyo
(19.59 KB)
??
locators.py
(49.82 KB)
??
locators.pyc
(44.9 KB)
??
locators.pyo
(44.85 KB)
??
manifest.py
(14.46 KB)
??
manifest.pyc
(11.87 KB)
??
manifest.pyo
(11.71 KB)
??
markers.py
(6.13 KB)
??
markers.pyc
(7.98 KB)
??
markers.pyo
(7.86 KB)
??
metadata.py
(37.92 KB)
??
metadata.pyc
(34.32 KB)
??
metadata.pyo
(34.24 KB)
??
resources.py
(10.51 KB)
??
resources.pyc
(13.64 KB)
??
resources.pyo
(13.64 KB)
??
scripts.py
(14.87 KB)
??
scripts.pyc
(12.17 KB)
??
scripts.pyo
(12.17 KB)
??
util.py
(51.75 KB)
??
util.pyc
(55.54 KB)
??
util.pyo
(55.05 KB)
??
version.py
(23.16 KB)
??
version.pyc
(25.78 KB)
??
version.pyo
(25.69 KB)
??
wheel.py
(38.2 KB)
??
wheel.pyc
(30.43 KB)
??
wheel.pyo
(30.35 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