add sys.base_exec_prefix and sys.base_prefix (#2047)

See https://docs.python.org/3/library/sys.html#sys.base_exec_prefix.

Required for https://github.com/python/mypy/pull/4888
This commit is contained in:
Jelle Zijlstra
2018-04-11 13:59:44 -07:00
committed by Guido van Rossum
parent dca53fb2bd
commit 7cd2016931

View File

@@ -15,6 +15,8 @@ _T = TypeVar('_T')
# ----- sys variables -----
abiflags = ... # type: str
argv = ... # type: List[str]
base_exec_prefix: str
base_prefix: str
byteorder = ... # type: str
builtin_module_names = ... # type: Sequence[str] # actually a tuple of strings
copyright = ... # type: str