diff options
author | Victor Stinner <vstinner@python.org> | 2023-08-22 18:17:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-22 18:17:25 (GMT) |
commit | 615f6e946db6d7eae66b8de9a75a6c58a84516a6 (patch) | |
tree | d94d9365566defdedf9f2cf0deffa8f53b6ae587 /Objects | |
parent | 0cb0c238d520a8718e313b52cffc356a5a7561bf (diff) | |
download | cpython-615f6e946db6d7eae66b8de9a75a6c58a84516a6.zip cpython-615f6e946db6d7eae66b8de9a75a6c58a84516a6.tar.gz cpython-615f6e946db6d7eae66b8de9a75a6c58a84516a6.tar.bz2 |
gh-106320: Remove _PyDict_GetItemStringWithError() function (#108313)
Remove private _PyDict_GetItemStringWithError() function of the
public C API: the new PyDict_GetItemStringRef() can be used instead.
* Move private _PyDict_GetItemStringWithError() to the internal C API.
* _testcapi get_code_extra_index() uses PyDict_GetItemStringRef().
Avoid using private functions in _testcapi which tests the public C
API.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/structseq.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/structseq.c b/Objects/structseq.c index 700f67c..95c4c15 100644 --- a/Objects/structseq.c +++ b/Objects/structseq.c @@ -8,6 +8,7 @@ */ #include "Python.h" +#include "pycore_dict.h" // _PyDict_GetItemStringWithError() #include "pycore_tuple.h" // _PyTuple_FromArray() #include "pycore_object.h" // _PyObject_GC_TRACK() |