aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/parso/py2/tests/normalizer_issue_files/E23.py
blob: 66f9ca17d67f61b8e01f2e1f87d89f00d2c7b6b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#: E231:7 
a = (1,2) 
#: E231:5 
a[b1,:] 
#: E231:10 
a = [{'a':''}] 
# Okay 
a = (4,) 
#: E202:7 
b = (5, ) 
c = {'text': text[5:]} 
 
result = { 
    'key1': 'value', 
    'key2': 'value', 
}