Skip to content

Commit 90c3b74

Browse files
committed
Use right markup for CPython implementation
1 parent 548abb8 commit 90c3b74

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Doc/c-api/object.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ Object Protocol
286286
>>> D.__base__
287287
<class 'B'>
288288
289-
Note that behavior of the ``__base__`` attribute is dependent on the CPython implementation.
289+
Note that behavior of the ``__base__`` attribute is dependent on the :term:`CPython` implementation.
290290
291291
.. c:function:: int PyObject_IsInstance(PyObject *inst, PyObject *cls)
292292

Doc/library/stdtypes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5454,7 +5454,7 @@ types, where they are relevant. Some of these are not reported by the
54545454
``__base__`` is the base class that is involved in that chain.
54555455

54565456
.. note::
5457-
The behavior of the ``__base__`` attribute is dependent on the CPython implementation.
5457+
The behavior of the ``__base__`` attribute is dependent on the :term:`CPython` implementation.
54585458

54595459
.. attribute:: definition.__name__
54605460

Doc/reference/datamodel.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@ Custom classes
861861
``__base__`` is the base class that is involved in that chain.
862862

863863
.. note::
864-
The behavior of the ``__base__`` attribute is dependent on the CPython implementation.
864+
The behavior of the ``__base__`` attribute is dependent on the :term:`CPython` implementation.
865865

866866
:attr:`__doc__`
867867
The class's documentation string, or ``None`` if undefined.

0 commit comments

Comments
 (0)