commit | d4341109746aa15e1909e63b30b93b6133ffe401 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@gmail.com> | Thu Nov 23 00:12:09 2017 +0100 |
committer | GitHub <noreply@github.com> | Thu Nov 23 00:12:09 2017 +0100 |
tree | 8982cc677ace3953484d4e4e34c8b154d0b9fb35 | |
parent | 82656276caf4cb889193572d2d14dbc5f3d2bdff [diff] |
bpo-32030: Add _PyCoreConfig.module_search_path_env (#4504) Changes: * Py_Main() initializes _PyCoreConfig.module_search_path_env from the PYTHONPATH environment variable. * PyInterpreterState_New() now initializes core_config and config fields * Compute sys.path a little bit ealier in _Py_InitializeMainInterpreter() and new_interpreter() * Add _Py_GetPathWithConfig() private function.