bpo-32030: Rework memory allocators#4625
Merged
vstinner merged 3 commits intopython:masterfrom Nov 29, 2017
vstinner:pymem_fix
Merged
bpo-32030: Rework memory allocators#4625vstinner merged 3 commits intopython:masterfrom vstinner:pymem_fix
vstinner merged 3 commits intopython:masterfrom
vstinner:pymem_fix
Conversation
* Fix _PyMem_SetupAllocators("debug"): always restore allocators to
the defaults, rather than only caling _PyMem_SetupDebugHooks().
* Add _PyMem_SetDefaultAllocator() helper to set the "default"
allocator.
* Add _PyMem_GetAllocatorsName(): get the name of the allocators
* main() now uses debug hooks on memory allocators if Py_DEBUG is
defined, rather than calling directly malloc()
* Document default memory allocators in C API documentation
* _Py_InitializeCore() now fails with a fatal user error if
PYTHONMALLOC value is an unknown memory allocator, instead of
failing with a fatal internal error.
* Add new tests on the PYTHONMALLOC environment variable
Member
Author
|
I tested manually the PR. I ran "test_sys test_cmd_line test_capi" tests in these configurations:
|
Add the _testcapi.WITH_PYMALLOC constant and expose it as
support.with_pymalloc().
sysconfig.get_config_var('WITH_PYMALLOC') doesn't work on Windows, so
replace it with support.with_pymalloc().
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
the defaults, rather than only caling _PyMem_SetupDebugHooks().
allocator.
defined, rather than calling directly malloc()
https://bugs.python.org/issue32030