Skip to content

Commit 454cdb9

Browse files
bpo-45633: Fix newtypes doc typo (pythonGH-29318)
1 parent 77a1f8d commit 454cdb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/extending/newtypes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ analogous to the :ref:`rich comparison methods <richcmpfuncs>`, like
393393
:c:func:`PyObject_RichCompareBool`.
394394

395395
This function is called with two Python objects and the operator as arguments,
396-
where the operator is one of ``Py_EQ``, ``Py_NE``, ``Py_LE``, ``Py_GT``,
396+
where the operator is one of ``Py_EQ``, ``Py_NE``, ``Py_LE``, ``Py_GE``,
397397
``Py_LT`` or ``Py_GT``. It should compare the two objects with respect to the
398398
specified operator and return ``Py_True`` or ``Py_False`` if the comparison is
399399
successful, ``Py_NotImplemented`` to indicate that comparison is not

0 commit comments

Comments
 (0)