From e4366f640d121646e0e7c6f10aee2333a05b1f7b Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Wed, 11 Apr 2018 09:02:06 -0700 Subject: [PATCH] add sys.base_exec_prefix and sys.base_prefix https://docs.python.org/3/library/sys.html#sys.base_exec_prefix --- stdlib/3/sys.pyi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stdlib/3/sys.pyi b/stdlib/3/sys.pyi index 6d067189d040..0af8ea5ffa5e 100644 --- a/stdlib/3/sys.pyi +++ b/stdlib/3/sys.pyi @@ -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