commit | cc71cc925662cb089b5c6fe17df00d00045dfd71 | [log] [tgz] |
---|---|---|
author | Victor Stinner <vstinner@python.org> | Tue Oct 17 02:41:51 2023 +0200 |
committer | GitHub <noreply@github.com> | Tue Oct 17 02:41:51 2023 +0200 |
tree | 66629945768e18b3ec3ec33a02f9a78f018847c2 | |
parent | cf9c25c719ba9b0f5bde90fc8b8bba7942d10151 [diff] |
gh-85283: Add PyMem_RawMalloc() to the limited C API (#108570) 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>