summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bytecode/mp-tests/class3.py
blob: f49e2e811441e31133821b41f86ee1e0983d67c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
class A:
    def f(x):
        return x
    def g(y):
        def h(z):
            return x + y + z
        h(y)
A()
A.f(1)
A.g(2)(3)