Skip to content

Commit 83a5688

Browse files
committed
Add some tests with row and column
1 parent af3c252 commit 83a5688

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

testsuite/E20.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
#: E201
1+
#: E201:1:6
22
spam( ham[1], {eggs: 2})
3-
#: E201
3+
#: E201:1:10
44
spam(ham[ 1], {eggs: 2})
5-
#: E201
5+
#: E201:1:15
66
spam(ham[1], { eggs: 2})
77
#: Okay
88
spam(ham[1], {eggs: 2})
99
#:
1010

1111

12-
#: E202
12+
#: E202:1:23
1313
spam(ham[1], {eggs: 2} )
14-
#: E202
14+
#: E202:1:22
1515
spam(ham[1], {eggs: 2 })
16-
#: E202
16+
#: E202:1:11
1717
spam(ham[1 ], {eggs: 2})
1818
#: Okay
1919
spam(ham[1], {eggs: 2})
@@ -35,14 +35,14 @@
3535
#:
3636

3737

38-
#: E203
38+
#: E203:1:10
3939
if x == 4 :
4040
print x, y
4141
x, y = y, x
42-
#: E203 E702
42+
#: E203:2:15 E702:2:16
4343
if x == 4:
4444
print x, y ; x, y = y, x
45-
#: E203
45+
#: E203:3:13
4646
if x == 4:
4747
print x, y
4848
x, y = y , x

0 commit comments

Comments
 (0)