aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/python/return_dedent.py
blob: 8171bc9d127f2cd92113fcc10401c463fd732ca3 (plain) (blame)
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
36
37
38
39
def a():
    return

def a():
    return True

def a():
    return (1, 2, 3)

def a():
    return x.y.z

def a():
    return (
        1, 2, 3
    )

def a():
    return b(
        1, 2, 3
    )

def a():
    return [1, 2, 3]

def a():
    return {1, 2, 3}

def a():
    return {
        "a": 1,
        "b": 2,
        "c": 3
    }

def a():
    return [
        a for a in range (1, 3)
    ]