PATH: //proc/self/root/opt/alt/python311/lib/python3.11/site-packages/setuptools/_distutils
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 __init__.py
↓
X
📁 __pycache__/
X
📄 _collections.py
↓
X
📄 _functools.py
↓
X
📄 _log.py
↓
X
📄 _macos_compat.py
↓
X
📄 _msvccompiler.py
↓
X
📄 archive_util.py
↓
X
📄 bcppcompiler.py
↓
X
📄 ccompiler.py
↓
X
📄 cmd.py
↓
X
📁 command/
X
📄 config.py
↓
X
📄 core.py
↓
X
📄 cygwinccompiler.py
↓
X
📄 debug.py
↓
X
📄 dep_util.py
↓
X
📄 dir_util.py
↓
X
📄 dist.py
↓
X
📄 errors.py
↓
X
📄 extension.py
↓
X
📄 fancy_getopt.py
↓
X
📄 file_util.py
↓
X
📄 filelist.py
↓
X
📄 log.py
↓
X
📄 msvc9compiler.py
↓
X
📄 msvccompiler.py
↓
X
📄 py38compat.py
↓
X
📄 py39compat.py
↓
X
📄 spawn.py
↓
X
📄 sysconfig.py
↓
X
📄 text_file.py
↓
X
📄 unixccompiler.py
↓
X
📄 util.py
↓
X
📄 version.py
↓
X
📄 versionpredicate.py
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: py39compat.py
import sys import platform def add_ext_suffix_39(vars): """ Ensure vars contains 'EXT_SUFFIX'. pypa/distutils#130 """ import _imp ext_suffix = _imp.extension_suffixes()[0] vars.update( EXT_SUFFIX=ext_suffix, # sysconfig sets SO to match EXT_SUFFIX, so maintain # that expectation. # https://github.com/python/cpython/blob/785cc6770588de087d09e89a69110af2542be208/Lib/sysconfig.py#L671-L673 SO=ext_suffix, ) needs_ext_suffix = sys.version_info < (3, 10) and platform.system() == 'Windows' add_ext_suffix = add_ext_suffix_39 if needs_ext_suffix else lambda vars: None
SIMPAN PERUBAHAN