mirror of
https://github.com/python/cpython.git
synced 2025-08-05 01:18:26 +00:00

* 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.
4 lines
234 B
ReStructuredText
4 lines
234 B
ReStructuredText
Adds :c:func:`PyDict_GetItemRef` and :c:func:`PyDict_GetItemStringRef`
|
|
functions: similar to :c:func:`PyDict_GetItemWithError` but returning a
|
|
:term:`strong reference` instead of a :term:`borrowed reference`. Patch by
|
|
Victor Stinner.
|