diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2021-03-23 23:57:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-23 23:57:03 (GMT) |
commit | d9692027f41ee7600fe401c066617ebfc8bac930 (patch) | |
tree | c4e711c343099c3a695701fede2d5147a168c021 /Doc/data | |
parent | a81fca6ec8e0f748f8eafa12fb12cf9e12df465c (diff) | |
download | cpython-d9692027f41ee7600fe401c066617ebfc8bac930.zip cpython-d9692027f41ee7600fe401c066617ebfc8bac930.tar.gz cpython-d9692027f41ee7600fe401c066617ebfc8bac930.tar.bz2 |
bpo-31861: Complete the C-API docs for PyObject_GetAiter and PyAiter_Check (GH-25004)
Diffstat (limited to 'Doc/data')
-rw-r--r-- | Doc/data/refcounts.dat | 6 | ||||
-rw-r--r-- | Doc/data/stable_abi.dat | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/Doc/data/refcounts.dat b/Doc/data/refcounts.dat index 8a6ee71..505f120 100644 --- a/Doc/data/refcounts.dat +++ b/Doc/data/refcounts.dat @@ -1073,6 +1073,9 @@ PyInterpreterState_New:PyInterpreterState*::: PyIter_Check:int::: PyIter_Check:PyObject*:o:0: +PyAiter_Check:int::: +PyAiter_Check:PyObject*:o:0: + PyIter_Next:PyObject*::+1: PyIter_Next:PyObject*:o:0: @@ -1679,6 +1682,9 @@ PyObject_GetItem:PyObject*:key:0: PyObject_GetIter:PyObject*::+1: PyObject_GetIter:PyObject*:o:0: +PyObject_GetAiter:PyObject*::+1: +PyObject_GetAiter:PyObject*:o:0: + PyObject_HasAttr:int::: PyObject_HasAttr:PyObject*:o:0: PyObject_HasAttr:PyObject*:attr_name:0: diff --git a/Doc/data/stable_abi.dat b/Doc/data/stable_abi.dat index 67d01da..3adee10 100644 --- a/Doc/data/stable_abi.dat +++ b/Doc/data/stable_abi.dat @@ -1,5 +1,6 @@ # File generated by 'make regen-limited-abi' # This is NOT an authoritative list of stable ABI symbols +PyAiter_Check PyArg_Parse PyArg_ParseTuple PyArg_ParseTupleAndKeywords @@ -465,6 +466,7 @@ PyObject_GenericGetAttr PyObject_GenericGetDict PyObject_GenericSetAttr PyObject_GenericSetDict +PyObject_GetAiter PyObject_GetAttr PyObject_GetAttrString PyObject_GetItem |