]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Issue #18874: _PyObject_Malloc/Realloc/Free() now falls back on
authorVictor Stinner <victor.stinner@gmail.com>
Thu, 10 Oct 2013 13:58:42 +0000 (15:58 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Thu, 10 Oct 2013 13:58:42 +0000 (15:58 +0200)
commit6cf185dc064577c6f472c86741e91fb28ec82e2d
tree2fd36a0cd90c46c84eb9ba6d07eb32345e6c5e8d
parent7c74de4d00dc29143302bd2f718b3e3b04dafe9b
Issue #18874: _PyObject_Malloc/Realloc/Free() now falls back on
_PyMem_RawMalloc/Realloc/Free, instead of _PyMem_Malloc/Realloc/Free.  So it
becomes possible to use the fast pymalloc allocator for the PYMEM_DOMAIN_MEM
domain (PyMem_Malloc/Realloc/Free functions).
Doc/c-api/memory.rst
Objects/obmalloc.c