blob: 7eec148d833f57bf1343791a9d889ce3e3316b7f [file] [log] [blame]
Tor Norbyea3e39ab2014-04-10 10:54:17 -07001
2class A(object):
3 def __init__(self):
4 a = 1
5
6class C(A):
7 def <warning descr="Call to __init__ of super class is missed">__i<caret>nit__</warning>(self):
8 pass
9
10 def foo(self):
11 pass