Skip to content

Commit 66f3faa

Browse files
committed
"o" -> "op" (for real this time)
1 parent 2cd976b commit 66f3faa

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Doc/c-api/dict.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -444,9 +444,9 @@ Dictionary Keys Objects
444444
the object returned by :meth:`dict.keys`.
445445
446446
447-
.. c:function:: int PyDictKeys_Check(PyObject *o)
447+
.. c:function:: int PyDictKeys_Check(PyObject *op)
448448
449-
Return true if *o* is an instance of a dictionary keys view. This function
449+
Return true if *op* is an instance of a dictionary keys view. This function
450450
always succeeds.
451451
452452
@@ -459,9 +459,9 @@ Dictionary Values Objects
459459
the object returned by :meth:`dict.values`.
460460
461461
462-
.. c:function:: int PyDictValues_Check(PyObject *o)
462+
.. c:function:: int PyDictValues_Check(PyObject *op)
463463
464-
Return true if *o* is an instance of a dictionary values view. This function
464+
Return true if *op* is an instance of a dictionary values view. This function
465465
always succeeds.
466466
467467
@@ -474,7 +474,7 @@ Dictionary Items Objects
474474
the object returned by :meth:`dict.items`.
475475
476476
477-
.. c:function:: int PyDictItems_Check(PyObject *o)
477+
.. c:function:: int PyDictItems_Check(PyObject *op)
478478
479-
Return true if *o* is an instance of a dictionary items view. This function
479+
Return true if *op* is an instance of a dictionary items view. This function
480480
always succeeds.

0 commit comments

Comments
 (0)