cmdline: Make -P work in clustered mode
[samba.git] / third_party / pep8 / testsuite / E24.py
1 #: E241
2 a = (1,  2)
3 #: Okay
4 b = (1, 20)
5 #: E242
6 a = (1, 2)  # tab before 2
7 #: Okay
8 b = (1, 20)  # space before 20
9 #: E241 E241 E241
10 # issue 135
11 more_spaces = [a,    b,
12                ef,  +h,
13                c,   -d]