summaryrefslogtreecommitdiff
path: root/tests/functional/s/super/super_with_arguments.py
blob: 8ab7c4d71edafc2000970ee8f5e485db6a4fa978 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
class Foo:
    pass


class Bar(Foo):
    def __init__(self):
        super(Bar, self).__init__()  # [super-with-arguments]


class Baz(Foo):
    def __init__(self):
        super().__init__()


class Qux(Foo):
    def __init__(self):
        super(Bar, self).__init__()


class NotSuperCall(Foo):
    def __init__(self):
        super.test(Bar, self).__init__()


class InvalidSuperCall(Foo):
    def __init__(self):
        super(InvalidSuperCall.__class__, self).__init__()


def method_accepting_cls(cls, self):
    # Using plain `super()` is not valid here, since there's no `__class__` cell found
    # (Exact exception would be 'RuntimeError: super(): __class__ cell not found')
    # Instead, we expect to *not* see a warning about `super-with-arguments`.
    # Explicitly passing `cls`, and `self` to `super()` is what's required.
    super(cls, self).__init__()