summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2014-04-03 23:21:26 +0200
committerFlorent Xicluna <florent.xicluna@gmail.com>2014-04-03 23:21:26 +0200
commit83a5688181ed3fac058cd1b9b15f885e47578409 (patch)
treeb264659fe4bbf892b5cfd8e45d599ec390481ac5
parentaf3c252d15ff050686994d9533f7f0bd6313f079 (diff)
downloadpep8-83a5688181ed3fac058cd1b9b15f885e47578409.tar.gz
Add some tests with row and column
-rw-r--r--testsuite/E20.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/testsuite/E20.py b/testsuite/E20.py
index 5bdfea2..2f1ecc2 100644
--- a/testsuite/E20.py
+++ b/testsuite/E20.py
@@ -1,19 +1,19 @@
-#: E201
+#: E201:1:6
spam( ham[1], {eggs: 2})
-#: E201
+#: E201:1:10
spam(ham[ 1], {eggs: 2})
-#: E201
+#: E201:1:15
spam(ham[1], { eggs: 2})
#: Okay
spam(ham[1], {eggs: 2})
#:
-#: E202
+#: E202:1:23
spam(ham[1], {eggs: 2} )
-#: E202
+#: E202:1:22
spam(ham[1], {eggs: 2 })
-#: E202
+#: E202:1:11
spam(ham[1 ], {eggs: 2})
#: Okay
spam(ham[1], {eggs: 2})
@@ -35,14 +35,14 @@ result = [
#:
-#: E203
+#: E203:1:10
if x == 4 :
print x, y
x, y = y, x
-#: E203 E702
+#: E203:2:15 E702:2:16
if x == 4:
print x, y ; x, y = y, x
-#: E203
+#: E203:3:13
if x == 4:
print x, y
x, y = y , x