mirror of
https://github.com/python/cpython.git
synced 2025-08-05 01:18:26 +00:00

Add PyMem_RawMalloc(), PyMem_RawCalloc(), PyMem_RawRealloc() and PyMem_RawFree() to the limited C API. These functions were added by Python 3.4 and are needed to port stdlib extensions to the limited C API, like grp and pwd. Co-authored-by: Erlend E. Aasland <erlend@python.org>
3 lines
160 B
ReStructuredText
3 lines
160 B
ReStructuredText
Add :c:func:`PyMem_RawMalloc`, :c:func:`PyMem_RawCalloc`,
|
|
:c:func:`PyMem_RawRealloc` and :c:func:`PyMem_RawFree` to the limited C API.
|
|
Patch by Victor Stinner.
|