cmdline: Make -P work in clustered mode
[samba.git] / third_party / pep8 / testsuite / E21.py
1 #: E211
2 spam (1)
3 #: E211 E211
4 dict ['key'] = list [index]
5 #: E211
6 dict['key'] ['subkey'] = list[index]
7 #: Okay
8 spam(1)
9 dict['key'] = list[index]
10
11
12 # This is not prohibited by PEP8, but avoid it.
13 class Foo (Bar, Baz):
14     pass