aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/parso/py2/tests/normalizer_issue_files/E21.py
blob: d0d79c64b889743e1be47de3ba406113eb75c15e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#: E211:4 
spam (1) 
#: E211:4 E211:19 
dict ['key'] = list [index] 
#: E211:11 
dict['key'] ['subkey'] = list[index] 
# Okay 
spam(1) 
dict['key'] = list[index] 
 
 
# This is not prohibited by PEP8, but avoid it. 
# Dave: I think this is extremely stupid. Use the same convention everywhere. 
#: E211:9 
class Foo (Bar, Baz): 
    pass