File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1545,9 +1545,9 @@ resolve a consistent MRO that satisfies these rules from the list of bases provi
15451545 ...
15461546 TypeError: Cannot create a consistent method resolution order (MRO) for bases Base, Child
15471547
1548- In the MRO of ``Grandchild ``, ``Child `` must appear before ``Base `` because it is first
1549- in the base class list, but it must also appear after ``Base `` because it is a child of
1550- ``Base ``. This is a contradiction, so the class cannot be defined.
1548+ In the MRO of ``Grandchild ``, ``Base `` must appear before ``Child `` because it is first
1549+ in the base class list, but it must also appear after ``Child `` because it is a parent of
1550+ ``Child ``. This is a contradiction, so the class cannot be defined.
15511551
15521552If some of the bases have a custom :term: `metaclass `, the metaclass of the resulting class
15531553is chosen among the metaclasses of the bases and the explicitly specified metaclass of the
You can’t perform that action at this time.
0 commit comments