Skip to content

Commit d30c35d

Browse files
committed
moar fixes
1 parent 8f38531 commit d30c35d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Doc/howto/mro.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ E is more specialized than C, even if it is in a higher level.
335335

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

340340
>>> A.mro() # doctest: +NORMALIZE_WHITESPACE
341341
[<class 'A'>, <class 'B'>, <class 'E'>,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Add only fields which are modified via self.* to :attr:`~class.__static_attributes__`.
1+
Add only fields which are modified via self.* to :attr:`~type.__static_attributes__`.

0 commit comments

Comments
 (0)