diff options
author | Victor Stinner <vstinner@python.org> | 2019-11-20 11:59:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-20 11:59:12 (GMT) |
commit | 4dedd0f0ddc5a983a57bf0105eb34f948a91d2c4 (patch) | |
tree | 9b78468c58157901a86b70427eb97344b22634a4 /Misc | |
parent | 7247407c35330f3f6292f1d40606b7ba6afd5700 (diff) | |
download | cpython-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 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/C API/2019-11-20-11-08-06.bpo-37340.JBQJMS.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2019-11-20-11-08-06.bpo-37340.JBQJMS.rst b/Misc/NEWS.d/next/C API/2019-11-20-11-08-06.bpo-37340.JBQJMS.rst new file mode 100644 index 0000000..8ffa4eb --- /dev/null +++ b/Misc/NEWS.d/next/C API/2019-11-20-11-08-06.bpo-37340.JBQJMS.rst @@ -0,0 +1,2 @@ +Remove ``PyMethod_ClearFreeList()`` and ``PyCFunction_ClearFreeList()`` +functions: the free lists of bound method objects have been removed. |