diff options
author | Victor Stinner <vstinner@python.org> | 2023-08-29 00:29:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-29 00:29:46 (GMT) |
commit | 4fb96a11db5eaca3646bfa697d191469e567d283 (patch) | |
tree | cd639b62b56ae1077e8df660929c7a7b04e26a29 /Makefile.pre.in | |
parent | 88f1c5b454c34efc167a94b5e2d67ec042834e5b (diff) | |
download | cpython-4fb96a11db5eaca3646bfa697d191469e567d283.zip cpython-4fb96a11db5eaca3646bfa697d191469e567d283.tar.gz cpython-4fb96a11db5eaca3646bfa697d191469e567d283.tar.bz2 |
gh-106320: Remove private _Py_Identifier API (#108593)
Remove the private _Py_Identifier type and related private functions
from the public C API:
* _PyObject_GetAttrId()
* _PyObject_LookupSpecialId()
* _PyObject_SetAttrId()
* _PyType_LookupId()
* _Py_IDENTIFIER()
* _Py_static_string()
* _Py_static_string_init()
Move them to the internal C API: add a new pycore_identifier.h header
file. No longer export these functions.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 54b64e1..62a55bb 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1769,6 +1769,7 @@ PYTHON_HEADERS= \ $(srcdir)/Include/internal/pycore_global_objects_fini_generated.h \ $(srcdir)/Include/internal/pycore_hamt.h \ $(srcdir)/Include/internal/pycore_hashtable.h \ + $(srcdir)/Include/internal/pycore_identifier.h \ $(srcdir)/Include/internal/pycore_import.h \ $(srcdir)/Include/internal/pycore_initconfig.h \ $(srcdir)/Include/internal/pycore_interp.h \ |