diff options
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r-- | Objects/unicodeobject.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index a859fa0..b6ff83e 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -9018,6 +9018,12 @@ _PyUnicode_Fini(void) (void)PyUnicode_ClearFreeList(); } +void _PyUnicode_DebugMallocStats(FILE *out) +{ + _PyDebugAllocatorStats(out, "free PyUnicodeObject", numfree, + sizeof(PyUnicodeObject)); +} + #ifdef __cplusplus } #endif |