Files
openide/python/testData/quickFixes/AddCallSuperQuickFixTest/newStyle_after.py
T

11 lines
159 B
Python

class A(object):
def __init__(self):
a = 1
class C(A):
def __init__(self):
super(C, self).__init__()
def foo(self):
pass