summaryrefslogtreecommitdiff
path: root/testsuite/E24.py
blob: 36fb4aa7ebe8e0940e732970e317c444d26ab551 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#: E241
a = (1,  2)
#: Okay
b = (1, 20)
#: E242
a = (1,	2)  # tab before 2
#: Okay
b = (1, 20)  # space before 20
#: E241 E241 E241
# issue 135
more_spaces = [a,    b,
               ef,  +h,
               c,   -d]