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 /Objects/object.c | |
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 'Objects/object.c')
-rw-r--r-- | Objects/object.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Objects/object.c b/Objects/object.c index 585a974..ee20506 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -1959,12 +1959,10 @@ Py_ssize_t (*_Py_abstract_hack)(PyObject *) = PyObject_Size; void _PyObject_DebugTypeStats(FILE *out) { - _PyCFunction_DebugMallocStats(out); _PyDict_DebugMallocStats(out); _PyFloat_DebugMallocStats(out); _PyFrame_DebugMallocStats(out); _PyList_DebugMallocStats(out); - _PyMethod_DebugMallocStats(out); _PyTuple_DebugMallocStats(out); } |