summaryrefslogtreecommitdiff
path: root/testsuite/E26.py
blob: 984efb543f4cf324e14d5076937dac38d2da351f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#: E261
pass # an inline comment
#: E262
x = x + 1  #Increment x
#: E262
x = x + 1  #  Increment x
#: E262
x = y + 1  #:  Increment x
#: Okay
pass  # an inline comment
x = x + 1   # Increment x
y = y + 1   #: Increment x
#: