mirror of
https://github.com/python/cpython.git
synced 2026-01-27 13:15:25 +00:00
_Py_hashtable_new() now uses PyMem_Malloc/PyMem_Free allocator by default, rather than PyMem_RawMalloc/PyMem_RawFree. PyMem_Malloc is faster than PyMem_RawMalloc for memory blocks smaller than or equal to 512 bytes.
Miscellaneous source files for the main Python shared library