Superclass typo fix

This didn't actually affect anything (because all the MI3 constructor
does is invoke MI2 with the same arguments anyway).
This commit is contained in:
Jason Rhinelander 2017-07-29 03:54:25 -04:00
parent 12be4cd418
commit 85d63c3bcd
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ def test_multiple_inheritance_python():
class MI4(MI3, m.Base2):
def __init__(self, i, j, k):
MI2.__init__(self, j, k)
MI3.__init__(self, j, k)
m.Base2.__init__(self, i)
class MI5(m.Base2, B1, m.Base1):