commit | 6cf185dc064577c6f472c86741e91fb28ec82e2d | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@gmail.com> | Thu Oct 10 15:58:42 2013 +0200 |
committer | Victor Stinner <victor.stinner@gmail.com> | Thu Oct 10 15:58:42 2013 +0200 |
tree | 2fd36a0cd90c46c84eb9ba6d07eb32345e6c5e8d | |
parent | 7c74de4d00dc29143302bd2f718b3e3b04dafe9b [diff] |
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).