sys: add pycache_prefix (#3454)

New in Python 3.8:
https://docs.python.org/3.8/library/sys.html#sys.pycache_prefix
This commit is contained in:
Ran Benita
2019-11-11 00:09:45 +02:00
committed by Sebastian Rittau
parent 2f65683d7b
commit e55dad5dd0

View File

@@ -46,6 +46,8 @@ path_hooks: List[Any] # TODO precise type; function, path to finder
path_importer_cache: Dict[str, Any] # TODO precise type
platform: str
prefix: str
if sys.version_info >= (3, 8):
pycache_prefix: Optional[str]
ps1: str
ps2: str
stdin: TextIO