PATH: //proc/thread-self/root/opt/cloudlinux/venv/lib/python3.11/site-packages/setuptools
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 __init__.py
↓
X
📁 __pycache__/
X
📄 _core_metadata.py
↓
X
📁 _distutils/
X
📄 _entry_points.py
↓
X
📄 _imp.py
↓
X
📄 _importlib.py
↓
X
📄 _itertools.py
↓
X
📄 _normalization.py
↓
X
📄 _path.py
↓
X
📄 _reqs.py
↓
X
📄 _shutil.py
↓
X
📄 _static.py
↓
X
📁 _vendor/
X
📄 archive_util.py
↓
X
📄 build_meta.py
↓
X
📄 cli-32.exe
↓
X
📄 cli-64.exe
↓
X
📄 cli-arm64.exe
↓
X
📄 cli.exe
↓
X
📁 command/
X
📁 compat/
X
📁 config/
X
📄 depends.py
↓
X
📄 discovery.py
↓
X
📄 dist.py
↓
X
📄 errors.py
↓
X
📄 extension.py
↓
X
📄 glob.py
↓
X
📄 gui-32.exe
↓
X
📄 gui-64.exe
↓
X
📄 gui-arm64.exe
↓
X
📄 gui.exe
↓
X
📄 installer.py
↓
X
📄 launch.py
↓
X
📄 logging.py
↓
X
📄 modified.py
↓
X
📄 monkey.py
↓
X
📄 msvc.py
↓
X
📄 namespaces.py
↓
X
📄 package_index.py
↓
X
📄 sandbox.py
↓
X
📄 script (dev).tmpl
↓
X
📄 script.tmpl
↓
X
📁 tests/
X
📄 unicode_utils.py
↓
X
📄 version.py
↓
X
📄 warnings.py
↓
X
📄 wheel.py
↓
X
📄 windows_support.py
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: _itertools.py
from more_itertools import consume # noqa: F401 # copied from jaraco.itertools 6.1 def ensure_unique(iterable, key=lambda x: x): """ Wrap an iterable to raise a ValueError if non-unique values are encountered. >>> list(ensure_unique('abc')) ['a', 'b', 'c'] >>> consume(ensure_unique('abca')) Traceback (most recent call last): ... ValueError: Duplicate element 'a' encountered. """ seen = set() seen_add = seen.add for element in iterable: k = key(element) if k in seen: raise ValueError(f"Duplicate element {element!r} encountered.") seen_add(k) yield element
SIMPAN PERUBAHAN