commit | f5c4b99034fae12ac2b9498dd12b5b3f352b90c8 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@gmail.com> | Fri Apr 22 16:26:23 2016 +0200 |
committer | Victor Stinner <victor.stinner@gmail.com> | Fri Apr 22 16:26:23 2016 +0200 |
tree | 743fb9af0ea98b29e696aa920d4823d30acf483f | |
parent | 5439fc4901dbc7ab0fc0c8d2b2266e05d0019a92 [diff] |
PyMem_Malloc() now uses the fast pymalloc allocator Issue #26249: PyMem_Malloc() allocator family now uses the pymalloc allocator rather than system malloc(). Applications calling PyMem_Malloc() without holding the GIL can now crash: use PYTHONMALLOC=debug environment variable to validate the usage of memory allocators in your application.