summaryrefslogtreecommitdiffstats
path: root/Include/cpython/tracemalloc.h
Commit message (Collapse)AuthorAgeFilesLines
* [3.13] Add `extern "C"` around `PyTraceMalloc_` functions. (GH-127772) (#127815)Miss Islington (bot)2024-12-111-0/+6
| | | | | | | | | Add `extern "C"` around `PyTraceMalloc_` functions. (GH-127772) Pretty much everything else exported by Python.h has an extern "C" annotation, yet this header appears to be missing one. (cherry picked from commit 2cdeb61b57e638ae46a04386330a12abe9cddf2c) Co-authored-by: Peter Hawkins <hawkinsp@cs.stanford.edu>
* gh-106320: Remove private _PyTraceMalloc C API functions (#106324)Victor Stinner2023-07-021-0/+26
* Remove private _PyTraceMalloc C API functions: move them to the internal C API. * Don't export most of these functions anymore, but still export _PyTraceMalloc_GetTraceback() used by tests. * Rename Include/tracemalloc.h to Include/cpython/tracemalloc.h