PATH: //proc/self/root/opt/alt/python27/lib/python2.7/site-packages/pip/_internal/models
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 __init__.py
↓
X
📄 __init__.pyc
↓
X
📄 candidate.py
↓
X
📄 candidate.pyc
↓
X
📄 direct_url.py
↓
X
📄 direct_url.pyc
↓
X
📄 format_control.py
↓
X
📄 format_control.pyc
↓
X
📄 index.py
↓
X
📄 index.pyc
↓
X
📄 link.py
↓
X
📄 link.pyc
↓
X
📄 scheme.py
↓
X
📄 scheme.pyc
↓
X
📄 search_scope.py
↓
X
📄 search_scope.pyc
↓
X
📄 selection_prefs.py
↓
X
📄 selection_prefs.pyc
↓
X
📄 target_python.py
↓
X
📄 target_python.pyc
↓
X
📄 wheel.py
↓
X
📄 wheel.pyc
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: scheme.py
""" For types associated with installation schemes. For a general overview of available schemes and their context, see https://docs.python.org/3/install/index.html#alternate-installation. """ SCHEME_KEYS = ['platlib', 'purelib', 'headers', 'scripts', 'data'] class Scheme(object): """A Scheme holds paths which are used as the base directories for artifacts associated with a Python package. """ __slots__ = SCHEME_KEYS def __init__( self, platlib, # type: str purelib, # type: str headers, # type: str scripts, # type: str data, # type: str ): self.platlib = platlib self.purelib = purelib self.headers = headers self.scripts = scripts self.data = data
SIMPAN PERUBAHAN