]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
gh-106004: Add PyDict_GetItemRef() function (#106005)
authorVictor Stinner <vstinner@python.org>
Fri, 21 Jul 2023 21:10:51 +0000 (23:10 +0200)
committerGitHub <noreply@github.com>
Fri, 21 Jul 2023 21:10:51 +0000 (23:10 +0200)
commit41ca16455188db806bfc7037058e8ecff2755e6c
tree925ab5df83f04657ea3b4be058c104556b094424
parent0ba07b2108d4763273f3fb85544dde34c5acd40a
gh-106004: Add PyDict_GetItemRef() function (#106005)

* Add PyDict_GetItemRef() and PyDict_GetItemStringRef() functions.
  Add these functions to the stable ABI version 3.13.
* Add unit tests on the PyDict C API in test_capi.
Doc/c-api/dict.rst
Doc/data/stable_abi.dat
Doc/whatsnew/3.13.rst
Include/dictobject.h
Lib/test/test_stable_abi_ctypes.py
Misc/NEWS.d/next/C API/2023-06-23-02-57-15.gh-issue-106004.-OToh6.rst [new file with mode: 0644]
Misc/stable_abi.toml
Modules/_testcapimodule.c
Objects/dictobject.c
PC/python3dll.c