OXIESEC PANEL
- Current Dir:
/
/
opt
/
alt
/
python311
/
lib
/
python3.11
/
site-packages
/
pip
/
_vendor
/
distlib
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/08/2024 06:29:58 PM
rwxr-xr-x
📄
__init__.py
581 bytes
11/13/2023 10:00:31 PM
rw-r--r--
📁
__pycache__
-
05/08/2024 06:29:58 PM
rwxr-xr-x
📁
_backport
-
05/08/2024 06:29:58 PM
rwxr-xr-x
📄
compat.py
40.52 KB
11/13/2023 10:00:31 PM
rw-r--r--
📄
database.py
49.86 KB
11/13/2023 10:00:31 PM
rw-r--r--
📄
index.py
20.25 KB
11/13/2023 10:00:31 PM
rw-r--r--
📄
locators.py
50.75 KB
11/13/2023 10:00:31 PM
rw-r--r--
📄
manifest.py
14.46 KB
11/13/2023 10:00:31 PM
rw-r--r--
📄
markers.py
4.87 KB
11/13/2023 10:00:31 PM
rw-r--r--
📄
metadata.py
38.19 KB
11/13/2023 10:00:31 PM
rw-r--r--
📄
resources.py
10.57 KB
11/13/2023 10:00:31 PM
rw-r--r--
📄
scripts.py
17.3 KB
11/13/2023 10:00:31 PM
rw-r--r--
📄
util.py
66.18 KB
11/13/2023 10:00:31 PM
rw-r--r--
📄
version.py
22.96 KB
11/13/2023 10:00:31 PM
rw-r--r--
📄
wheel.py
41.94 KB
11/13/2023 10:00:31 PM
rw-r--r--
Editing: __init__.py
Close
# -*- 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.3' 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())