Skip to content

Commit e059d66

Browse files
committed
"f" -> "op"
1 parent 4ac3cf6 commit e059d66

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Doc/c-api/structures.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -454,13 +454,13 @@ definition with the same method name.
454454
available as :class:`types.BuiltinMethodType` in the Python layer.
455455
456456
457-
.. c:function:: int PyCMethod_Check(PyObject *f)
457+
.. c:function:: int PyCMethod_Check(PyObject *op)
458458
459-
Return true if *f* is an instance of the :c:type:`PyCMethod_Type` type
459+
Return true if *op* is an instance of the :c:type:`PyCMethod_Type` type
460460
or a subtype of it. This function always succeeds.
461461
462462
463-
.. c:function:: int PyCMethod_CheckExact(PyObject *f)
463+
.. c:function:: int PyCMethod_CheckExact(PyObject *op)
464464
465465
This is the same as :c:func:`PyCMethod_Check`, but does not account for
466466
subtypes.
@@ -497,13 +497,13 @@ definition with the same method name.
497497
available as :class:`types.BuiltinFunctionType` in the Python layer.
498498
499499
500-
.. c:function:: int PyCFunction_Check(PyObject *f)
500+
.. c:function:: int PyCFunction_Check(PyObject *op)
501501
502-
Return true if *f* is an instance of the :c:type:`PyCFunction_Type` type
502+
Return true if *op* is an instance of the :c:type:`PyCFunction_Type` type
503503
or a subtype of it. This function always succeeds.
504504
505505
506-
.. c:function:: int PyCFunction_CheckExact(PyObject *f)
506+
.. c:function:: int PyCFunction_CheckExact(PyObject *op)
507507
508508
This is the same as :c:func:`PyCFunction_Check`, but does not account for
509509
subtypes.

0 commit comments

Comments
 (0)