# -*- 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())
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
__pycache__ | Folder | 0755 |
|
|
_backport | Folder | 0755 |
|
|
__init__.py | File | 581 B | 0644 |
|
compat.py | File | 39.84 KB | 0644 |
|
database.py | File | 48.51 KB | 0644 |
|
index.py | File | 20.59 KB | 0644 |
|
locators.py | File | 49.82 KB | 0644 |
|
manifest.py | File | 14.46 KB | 0644 |
|
markers.py | File | 6.13 KB | 0644 |
|
metadata.py | File | 37.92 KB | 0644 |
|
resources.py | File | 10.51 KB | 0644 |
|
scripts.py | File | 14.87 KB | 0644 |
|
util.py | File | 52.35 KB | 0644 |
|
version.py | File | 23.16 KB | 0644 |
|
wheel.py | File | 38.2 KB | 0644 |
|