bpo-40170: Move _Py_GetAllocatedBlocks() to pycore_pymem.h (GH-30943)

Move _Py_GetAllocatedBlocks() and _PyObject_DebugMallocStats()
declarations to pycore_pymem.h. These functions are related to memory
allocators, not to the PyObject structure.
This commit is contained in:
Victor Stinner 2022-01-27 21:23:22 +01:00 committed by GitHub
parent 6c6a153dee
commit 0575551f69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 12 deletions

View file

@ -8,9 +8,6 @@
/* Defined in tracemalloc.c */
extern void _PyMem_DumpTraceback(int fd, const void *ptr);
// Forward declaration
int _PyObject_DebugMallocStats(FILE *out);
/* Python's malloc wrappers (see pymem.h) */