summaryrefslogtreecommitdiff
path: root/testsuite/E21.py
blob: 96b55b8790138ffbdc48c625244547b735e938a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#: E211
spam (1)
#: E211 E211
dict ['key'] = list [index]
#: E211
dict['key'] ['subkey'] = list[index]
#: Okay
spam(1)
dict['key'] = list[index]


# This is not prohibited by PEP8, but avoid it.
class Foo (Bar, Baz):
    pass