Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bpo-32030: Add _PyCoreConfig.module_search_paths #4954

Merged
merged 4 commits into from
Jan 24, 2018
Merged

bpo-32030: Add _PyCoreConfig.module_search_paths #4954

merged 4 commits into from
Jan 24, 2018

Conversation

vstinner
Copy link
Member

@vstinner vstinner commented Dec 21, 2017

_PyCoreConfig_Read() is now responsible to compute sys.path.
So sys.path is now computed before calling _Py_InitializeCore().

Changes:

  • Add nmodule_search_path, module_search_paths, executable, prefix,
    base_prefix, exec_prefix and base_exec_prefix to _PyCoreConfig
  • _PyMainInterpreterConfig_Read() now only converts wchar_t** lists
    into a Python list, it doesn't compute sys.path anymore.

https://bugs.python.org/issue32030

@vstinner
Copy link
Member Author

Oh. Calling _PyPathConfig_Init() before _PyMem_SetupAllocators() doesn't work.

_PyPathConfig_Init() -> _Py_wreadlink -> Py_EncodeLocale -> PyMem_Raw -> pymalloc_alloc

pymalloc_alloc() calls PyMem_RawRealloc() to allocate the arenas array.

But if _PyMem_SetupAllocators() change the RAW allocator, pymalloc_alloc() will crash when resizing arenas...

In short, PyMem_Malloc() must be called before _PyMem_SetupAllocators().

_PyPathConfig_Init() must be modified to only use the RAW memory allocator.

@vstinner vstinner requested a review from a team as a code owner December 21, 2017 03:38
@vstinner
Copy link
Member Author

In other pull requests (now merged), I modified _PyPathConfig_Calculate() to not use the Python API internally, but only regular C functions. I rebased this PR on top of it.

But I'm not sure that @ncoghlan likes this change. I will wait his feedback before merging this PR.

@vstinner vstinner changed the title bpo-32030: Add _PyCoreConfig.module_search_paths [WIP] bpo-32030: Add _PyCoreConfig.module_search_paths Dec 21, 2017
@vstinner
Copy link
Member Author

test_site fails on AppVeyor.

@ncoghlan
Copy link
Contributor

ncoghlan commented Dec 24, 2017 via email

_PyCoreConfig_Read() is now responsible to compute sys.path.
So sys.path is now computed before calling _Py_InitializeCore().

Changes:

* Add nmodule_search_path, module_search_paths, executable, prefix,
  base_prefix, exec_prefix and base_exec_prefix to _PyCoreConfig
* _PyMainInterpreterConfig_Read() now only converts wchar_t** lists
  into a Python list, it doesn't compute sys.path anymore.
@vstinner
Copy link
Member Author

I rebased my PR.

Calling _PyCoreConfig_Read() requires to set global configuration
variables, and then get again updated global configuration variables.
@vstinner vstinner changed the title [WIP] bpo-32030: Add _PyCoreConfig.module_search_paths bpo-32030: Add _PyCoreConfig.module_search_paths Jan 23, 2018
@vstinner
Copy link
Member Author

@ncoghlan: Oh, this patch adds another layer of uglyness in main.c: global configuration flags should be set before calling _PyPathConfig_Init(), and then get again to get updated values... Maybe _PyPathConfig_Init() shouldn't read nor write these global variables...

@vstinner vstinner merged commit 8ded5b8 into python:master Jan 24, 2018
@vstinner vstinner deleted the module_search_paths branch January 24, 2018 16:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants