]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
gh-142217: Remove internal _Py_Identifier functions (#142219)
authorVictor Stinner <vstinner@python.org>
Wed, 3 Dec 2025 13:33:32 +0000 (14:33 +0100)
committerGitHub <noreply@github.com>
Wed, 3 Dec 2025 13:33:32 +0000 (14:33 +0100)
commit7e5fcae09bb0e87ed48cb593f7f46d715e48a102
treea860d0260f22322ac2d2df0f2c3d1f5051d7b3a1
parent4172644d78d58189e46424af0aea302b1d78e2de
gh-142217: Remove internal _Py_Identifier functions (#142219)

Remove internal functions:

* _PyDict_ContainsId()
* _PyDict_DelItemId()
* _PyDict_GetItemIdWithError()
* _PyDict_SetItemId()
* _PyEval_GetBuiltinId()
* _PyObject_CallMethodIdNoArgs()
* _PyObject_CallMethodIdObjArgs()
* _PyObject_CallMethodIdOneArg()
* _PyObject_VectorcallMethodId()
* _PyUnicode_EqualToASCIIId()

These functions were not exported and so no usable outside CPython.
Include/internal/pycore_call.h
Include/internal/pycore_ceval.h
Include/internal/pycore_dict.h
Include/internal/pycore_unicodeobject.h
Objects/call.c
Objects/dictobject.c
Objects/odictobject.c
Objects/unicodeobject.c
Python/ceval.c