Commit 85d63c3b by Jason Rhinelander

Superclass typo fix

This didn't actually affect anything (because all the MI3 constructor
does is invoke MI2 with the same arguments anyway).
parent 12be4cd4
...@@ -72,7 +72,7 @@ def test_multiple_inheritance_python(): ...@@ -72,7 +72,7 @@ def test_multiple_inheritance_python():
class MI4(MI3, m.Base2): class MI4(MI3, m.Base2):
def __init__(self, i, j, k): def __init__(self, i, j, k):
MI2.__init__(self, j, k) MI3.__init__(self, j, k)
m.Base2.__init__(self, i) m.Base2.__init__(self, i)
class MI5(m.Base2, B1, m.Base1): class MI5(m.Base2, B1, m.Base1):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment