aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/parso/py3/tests/normalizer_issue_files/E20.py
blob: dca322227c9278a794d4f94e671d7a6ce0bd0ae5 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
#: E201:5 
spam( ham[1], {eggs: 2}) 
#: E201:9 
spam(ham[ 1], {eggs: 2}) 
#: E201:14 
spam(ham[1], { eggs: 2}) 
 
# Okay 
spam(ham[1], {eggs: 2}) 
 
 
#: E202:22 
spam(ham[1], {eggs: 2} ) 
#: E202:21 
spam(ham[1], {eggs: 2 }) 
#: E202:10 
spam(ham[1 ], {eggs: 2}) 
# Okay 
spam(ham[1], {eggs: 2}) 
 
result = func( 
    arg1='some value', 
    arg2='another value', 
) 
 
result = func( 
    arg1='some value', 
    arg2='another value' 
) 
 
result = [ 
    item for item in items 
    if item > 5 
] 
 
#: E203:9 
if x == 4 : 
    foo(x, y) 
    x, y = y, x 
if x == 4: 
    #: E203:12 E702:13 
    a = x, y ; x, y = y, x 
if x == 4: 
    foo(x, y) 
    #: E203:12 
    x, y = y , x 
# Okay 
if x == 4: 
    foo(x, y) 
    x, y = y, x 
a[b1, :1] == 3 
b = a[:, b1]