]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-37340: Remove PyMethod_ClearFreeList() and PyCFunction_ClearFreeList() (GH-17284)
authorVictor Stinner <vstinner@python.org>
Wed, 20 Nov 2019 11:59:12 +0000 (12:59 +0100)
committerGitHub <noreply@github.com>
Wed, 20 Nov 2019 11:59:12 +0000 (12:59 +0100)
commit4dedd0f0ddc5a983a57bf0105eb34f948a91d2c4
tree9b78468c58157901a86b70427eb97344b22634a4
parent7247407c35330f3f6292f1d40606b7ba6afd5700
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.
Doc/whatsnew/3.9.rst
Include/classobject.h
Include/internal/pycore_pylifecycle.h
Include/methodobject.h
Misc/NEWS.d/next/C API/2019-11-20-11-08-06.bpo-37340.JBQJMS.rst [new file with mode: 0644]
Modules/gcmodule.c
Objects/classobject.c
Objects/methodobject.c
Python/pylifecycle.c