summaryrefslogtreecommitdiffstats
path: root/Doc/c-api/iterator.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/c-api/iterator.rst')
-rw-r--r--Doc/c-api/iterator.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/c-api/iterator.rst b/Doc/c-api/iterator.rst
index 9595223..6b7ba8c 100644
--- a/Doc/c-api/iterator.rst
+++ b/Doc/c-api/iterator.rst
@@ -19,7 +19,7 @@ sentinel value is returned.
types.
-.. c:function:: int PySeqIter_Check(op)
+.. c:function:: int PySeqIter_Check(PyObject *op)
Return true if the type of *op* is :c:data:`PySeqIter_Type`. This function
always succeeds.
@@ -38,7 +38,7 @@ sentinel value is returned.
two-argument form of the :func:`iter` built-in function.
-.. c:function:: int PyCallIter_Check(op)
+.. c:function:: int PyCallIter_Check(PyObject *op)
Return true if the type of *op* is :c:data:`PyCallIter_Type`. This
function always succeeds.