PATH: //usr/lib/python3.9/site-packages/setuptools/_distutils/command
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 __init__.py
↓
X
📁 __pycache__/
X
📄 bdist.py
↓
X
📄 bdist_dumb.py
↓
X
📄 bdist_msi.py
↓
X
📄 bdist_rpm.py
↓
X
📄 bdist_wininst.py
↓
X
📄 build.py
↓
X
📄 build_clib.py
↓
X
📄 build_ext.py
↓
X
📄 build_py.py
↓
X
📄 build_scripts.py
↓
X
📄 check.py
↓
X
📄 clean.py
↓
X
📄 config.py
↓
X
📄 install.py
↓
X
📄 install_data.py
↓
X
📄 install_egg_info.py
↓
X
📄 install_headers.py
↓
X
📄 install_lib.py
↓
X
📄 install_scripts.py
↓
X
📄 py37compat.py
↓
X
📄 register.py
↓
X
📄 sdist.py
↓
X
📄 upload.py
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: py37compat.py
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 )
SIMPAN PERUBAHAN