diff options
author | Inada Naoki <songofacandy@gmail.com> | 2019-07-26 06:05:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-26 06:05:50 (GMT) |
commit | 3e54b575313c64f541e98216ed079fafed01ff5d (patch) | |
tree | 747f171a2d8d726cc97580c85ded8891a2bc41ae /Include | |
parent | 76b645124b3aaa34bc664eece43707c01ef1b382 (diff) | |
download | cpython-3e54b575313c64f541e98216ed079fafed01ff5d.zip cpython-3e54b575313c64f541e98216ed079fafed01ff5d.tar.gz cpython-3e54b575313c64f541e98216ed079fafed01ff5d.tar.bz2 |
bpo-37340: remove free_list for bound method objects (GH-14232)
Diffstat (limited to 'Include')
-rw-r--r-- | Include/methodobject.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Include/methodobject.h b/Include/methodobject.h index ab66b03..9f5f7c4 100644 --- a/Include/methodobject.h +++ b/Include/methodobject.h @@ -99,11 +99,6 @@ typedef struct { PyAPI_FUNC(int) PyCFunction_ClearFreeList(void); -#ifndef Py_LIMITED_API -PyAPI_FUNC(void) _PyCFunction_DebugMallocStats(FILE *out); -PyAPI_FUNC(void) _PyMethod_DebugMallocStats(FILE *out); -#endif - #ifdef __cplusplus } #endif |