OXIESEC PANEL
- Current Dir:
/
/
snap
/
certbot
/
4730
/
usr
/
lib
/
python3
/
dist-packages
/
setuptools
/
_distutils
/
command
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
06/10/2025 09:51:14 PM
rwxr-xr-x
📄
__init__.py
430 bytes
08/18/2023 12:07:38 PM
rw-r--r--
📄
_framework_compat.py
1.58 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
bdist.py
5.28 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
bdist_dumb.py
4.56 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
bdist_rpm.py
21.5 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
build.py
5.45 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
build_clib.py
7.5 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
build_ext.py
30.76 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
build_py.py
16.15 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
build_scripts.py
5.47 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
check.py
4.76 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
clean.py
2.53 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
config.py
12.77 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
install.py
29.45 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
install_data.py
2.7 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
install_egg_info.py
2.72 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
install_headers.py
1.15 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
install_lib.py
8.21 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
install_scripts.py
1.89 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
py37compat.py
672 bytes
08/18/2023 12:07:38 PM
rw-r--r--
📄
register.py
11.54 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
sdist.py
18.78 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
upload.py
7.32 KB
08/18/2023 12:07:38 PM
rw-r--r--
Editing: py37compat.py
Close
import sys def _pythonlib_compat(): """ On Python 3.7 and earlier, distutils would include the Python library. See pypa/distutils#9. """ from distutils import sysconfig if not sysconfig.get_config_var('Py_ENABLED_SHARED'): return yield 'python{}.{}{}'.format( sys.hexversion >> 24, (sys.hexversion >> 16) & 0xFF, sysconfig.get_config_var('ABIFLAGS'), ) def compose(f1, f2): return lambda *args, **kwargs: f1(f2(*args, **kwargs)) pythonlib = ( compose(list, _pythonlib_compat) if sys.version_info < (3, 8) and sys.platform != 'darwin' and sys.platform[:3] != 'aix' else list )