mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
gh-108511: Add C API functions which do not silently ignore errors (GH-109025)
Add the following functions: * PyObject_HasAttrWithError() * PyObject_HasAttrStringWithError() * PyMapping_HasKeyWithError() * PyMapping_HasKeyStringWithError()
This commit is contained in:
parent
e57ecf6bbc
commit
add16f1a5e
28 changed files with 330 additions and 111 deletions
4
Doc/data/stable_abi.dat
generated
4
Doc/data/stable_abi.dat
generated
|
@ -377,6 +377,8 @@ function,PyMapping_GetOptionalItem,3.13,,
|
|||
function,PyMapping_GetOptionalItemString,3.13,,
|
||||
function,PyMapping_HasKey,3.2,,
|
||||
function,PyMapping_HasKeyString,3.2,,
|
||||
function,PyMapping_HasKeyStringWithError,3.13,,
|
||||
function,PyMapping_HasKeyWithError,3.13,,
|
||||
function,PyMapping_Items,3.2,,
|
||||
function,PyMapping_Keys,3.2,,
|
||||
function,PyMapping_Length,3.2,,
|
||||
|
@ -523,6 +525,8 @@ function,PyObject_GetOptionalAttrString,3.13,,
|
|||
function,PyObject_GetTypeData,3.12,,
|
||||
function,PyObject_HasAttr,3.2,,
|
||||
function,PyObject_HasAttrString,3.2,,
|
||||
function,PyObject_HasAttrStringWithError,3.13,,
|
||||
function,PyObject_HasAttrWithError,3.13,,
|
||||
function,PyObject_Hash,3.2,,
|
||||
function,PyObject_HashNotImplemented,3.2,,
|
||||
function,PyObject_Init,3.2,,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue