summaryrefslogtreecommitdiff
path: root/python/testData/completion/superInit.after.py
blob: b31494d3761fbf363f161a1a23b91fb462933f7e (plain)
1
2
3
4
5
6
7
8
class Matrix(object):
    def __init__(self):
        pass


class Vector3(Matrix):
    def __init__(self):
        super(Vector3, self).__init__()