mirror of
https://github.com/python/cpython.git
synced 2025-08-24 18:55:00 +00:00
gh-109853: Fix sys.path[0] For Subinterpreters (gh-109994)
This change makes sure sys.path[0] is set properly for subinterpreters. Before, it wasn't getting set at all. This PR does not address the broader concerns from gh-109853.
This commit is contained in:
parent
fc2cb86d21
commit
a040a32ea2
7 changed files with 214 additions and 10 deletions
|
@ -97,6 +97,7 @@ static const PyConfigSpec PYCONFIG_SPEC[] = {
|
|||
SPEC(pythonpath_env, WSTR_OPT),
|
||||
SPEC(home, WSTR_OPT),
|
||||
SPEC(platlibdir, WSTR),
|
||||
SPEC(sys_path_0, WSTR_OPT),
|
||||
SPEC(module_search_paths_set, UINT),
|
||||
SPEC(module_search_paths, WSTR_LIST),
|
||||
SPEC(stdlib_dir, WSTR_OPT),
|
||||
|
@ -770,6 +771,7 @@ PyConfig_Clear(PyConfig *config)
|
|||
CLEAR(config->exec_prefix);
|
||||
CLEAR(config->base_exec_prefix);
|
||||
CLEAR(config->platlibdir);
|
||||
CLEAR(config->sys_path_0);
|
||||
|
||||
CLEAR(config->filesystem_encoding);
|
||||
CLEAR(config->filesystem_errors);
|
||||
|
@ -3051,6 +3053,7 @@ _Py_DumpPathConfig(PyThreadState *tstate)
|
|||
PySys_WriteStderr(" import site = %i\n", config->site_import);
|
||||
PySys_WriteStderr(" is in build tree = %i\n", config->_is_python_build);
|
||||
DUMP_CONFIG("stdlib dir", stdlib_dir);
|
||||
DUMP_CONFIG("sys.path[0]", sys_path_0);
|
||||
#undef DUMP_CONFIG
|
||||
|
||||
#define DUMP_SYS(NAME) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue