Skip to content

Commit

Permalink
moar fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexWaygood committed Sep 25, 2024
1 parent 8f38531 commit d30c35d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Doc/howto/mro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ E is more specialized than C, even if it is in a higher level.

A lazy programmer can obtain the MRO directly from Python 2.2, since in
this case it coincides with the Python 2.3 linearization. It is enough
to invoke the :meth:`~class.mro` method of class A:
to invoke the :meth:`~type.mro` method of class A:

>>> A.mro() # doctest: +NORMALIZE_WHITESPACE
[<class 'A'>, <class 'B'>, <class 'E'>,
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Add only fields which are modified via self.* to :attr:`~class.__static_attributes__`.
Add only fields which are modified via self.* to :attr:`~type.__static_attributes__`.

0 comments on commit d30c35d

Please sign in to comment.