SyntaxFix
Write A Post
Hire A Developer
Questions
With Python 2.x old-style classes it would be this:
class A: def __init__(self): print "world" class B(A): def __init__(self): print "hello" A.__init__(self)