summaryrefslogtreecommitdiff
path: root/python/testData/hierarchy/call/Static/Parentheses/file_1.py
blob: ed3de6593a593d8ed2f9c148a1f137e6752d4b35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import main

def target_func():
    main.nothing(None)


def nothing(x):
    pass


def foo(x=bar()):
    ((target_func))()


def bar():
    main.nothing((target_func))


def another():
    ((((target_func), 1))(), 2)()