py:dcerpc/raw_testcase: let do_single_request() check stub length against alloc_hint
[Samba.git] / third_party / pep8 / testsuite / E24.py
blob36fb4aa7ebe8e0940e732970e317c444d26ab551
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]