Skip to content

Commit 46ea896

Browse files
committed
Use full name first then initialism and link to main term in glossary
1 parent 8909c8e commit 46ea896

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Doc/faq/programming.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1511,7 +1511,8 @@ check whether an object is one of Python's built-in types, for example,
15111511
Note that :func:`isinstance` also checks for virtual inheritance from an
15121512
:term:`abstract base class`. So, the test will return ``True`` for a
15131513
registered class even if hasn't directly or indirectly inherited from it. To
1514-
test for "true inheritance", scan the :term:`MRO` of the class:
1514+
test for "true inheritance", scan the :term:`method resolution order` (MRO) of
1515+
the class:
15151516

15161517
.. testcode::
15171518

0 commit comments

Comments
 (0)