]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
gh-105107: Remove PyEval_CallFunction() function (#105108)
authorVictor Stinner <vstinner@python.org>
Wed, 31 May 2023 11:17:06 +0000 (13:17 +0200)
committerGitHub <noreply@github.com>
Wed, 31 May 2023 11:17:06 +0000 (11:17 +0000)
commit579c41c10224a004c3e89ed9088771325c1c1a98
tree44588e43b779dd64f0bb9eb526c3c02a9301299d
parentadccff3b3f9fbdb58cb4b8fde92456e6dd078af0
gh-105107: Remove PyEval_CallFunction() function (#105108)

Remove 4 functions from the C API, deprecated in Python 3.9:

* PyEval_CallObjectWithKeywords()
* PyEval_CallObject()
* PyEval_CallFunction()
* PyEval_CallMethod()

Keep 3 functions in the stable ABI:

* PyEval_CallObjectWithKeywords()
* PyEval_CallFunction()
* PyEval_CallMethod()
Doc/data/stable_abi.dat
Doc/whatsnew/3.13.rst
Include/ceval.h
Misc/NEWS.d/next/C API/2023-05-30-19-11-09.gh-issue-105107.YQwMnm.rst [new file with mode: 0644]
Misc/stable_abi.toml
Objects/call.c