summaryrefslogtreecommitdiffstats
path: root/Objects/classobject.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2019-11-20 11:59:12 (GMT)
committerGitHub <noreply@github.com>2019-11-20 11:59:12 (GMT)
commit4dedd0f0ddc5a983a57bf0105eb34f948a91d2c4 (patch)
tree9b78468c58157901a86b70427eb97344b22634a4 /Objects/classobject.c
parent7247407c35330f3f6292f1d40606b7ba6afd5700 (diff)
downloadcpython-4dedd0f0ddc5a983a57bf0105eb34f948a91d2c4.zip
cpython-4dedd0f0ddc5a983a57bf0105eb34f948a91d2c4.tar.gz
cpython-4dedd0f0ddc5a983a57bf0105eb34f948a91d2c4.tar.bz2
bpo-37340: Remove PyMethod_ClearFreeList() and PyCFunction_ClearFreeList() (GH-17284)
Remove PyMethod_ClearFreeList() and PyCFunction_ClearFreeList() functions: the free lists of bound method objects have been removed. Remove also _PyMethod_Fini() and _PyCFunction_Fini() functions.
Diffstat (limited to 'Objects/classobject.c')
-rw-r--r--Objects/classobject.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/Objects/classobject.c b/Objects/classobject.c
index d3fc726..db53f04 100644
--- a/Objects/classobject.c
+++ b/Objects/classobject.c
@@ -371,20 +371,6 @@ PyTypeObject PyMethod_Type = {
method_new, /* tp_new */
};
-/* Clear out the free list */
-
-int
-PyMethod_ClearFreeList(void)
-{
- return 0;
-}
-
-void
-_PyMethod_Fini(void)
-{
- (void)PyMethod_ClearFreeList();
-}
-
/* ------------------------------------------------------------------------
* instance method
*/