SyntaxFix
Write A Post
Hire A Developer
Questions
Also, if you can't change class B, you can fix the error by using multiple inheritance.
class B: def meth(self, arg): print arg class C(B, object): def meth(self, arg): super(C, self).meth(arg) print C().meth(1)