/opt/alt/python37/lib/python3.7/site-packages/pip/_internal/models
NameSizeModeActions
__pycache__/-0755rm
candidate.py11950644editdlrm
candidate.pyc18310644editdlrm
candidate.pyo18310644editdlrm
direct_url.py69000644editdlrm
format_control.py28230644editdlrm
index.py11610644editdlrm
index.pyc14830644editdlrm
index.pyo14830644editdlrm
link.py74700644editdlrm
link.pyc95060644editdlrm
link.pyo93400644editdlrm
scheme.py7780644editdlrm
scheme.pyc11430644editdlrm
scheme.pyo11430644editdlrm
search_scope.py47510644editdlrm
search_scope.pyc41480644editdlrm
search_scope.pyo41480644editdlrm
selection_prefs.py20440644editdlrm
selection_prefs.pyc19360644editdlrm
selection_prefs.pyo19360644editdlrm
target_python.py40340644editdlrm
target_python.pyc41060644editdlrm
target_python.pyo41060644editdlrm
wheel.py27720644editdlrm
__init__.py630644editdlrm
__init__.pyc2440644editdlrm
__init__.pyo2440644editdlrm
Edit: /opt/alt/python37/lib/python3.7/site-packages/pip/_internal/models/scheme.py (778B)
""" 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