summaryrefslogtreecommitdiff
path: root/testsuite/E12.py
diff options
context:
space:
mode:
authorSam Vilain <svilain@saymedia.com>2012-06-06 11:12:14 -0700
committerSam Vilain <svilain@saymedia.com>2012-06-06 14:19:17 -0700
commit8b851472e9707203a74067d9595b44ead82e39bd (patch)
treeb0454b23b807d3dbe54ca9a8a1259c5a48ef21fe /testsuite/E12.py
parent7d06f2d5065d1efaf4e053a3a5db75e8cb15beb6 (diff)
downloadpep8-8b851472e9707203a74067d9595b44ead82e39bd.tar.gz
Make E127/E128 stricter about what defines a new level
The current code which permits tokens to be indented to match tokens on previous lines was a bit too permissive; any token which happened to line up with any previous token at all on the previous line was allowed; when really, this only makes sense for homogenous tokens and multi-line strings.
Diffstat (limited to 'testsuite/E12.py')
-rw-r--r--testsuite/E12.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/testsuite/E12.py b/testsuite/E12.py
index f5c7c97..deef54c 100644
--- a/testsuite/E12.py
+++ b/testsuite/E12.py
@@ -174,12 +174,27 @@ foo(1, 2, 3,
4, 5, 6)
#: E127
foo(1, 2, 3,
+ 4, 5, 6)
+#: E127
+foo(1, 2, 3,
4, 5, 6)
#: E127
foo(1, 2, 3,
+ 4, 5, 6)
+#: E127
+foo(1, 2, 3,
+ 4, 5, 6)
+#: E127
+foo(1, 2, 3,
4, 5, 6)
#: E127
foo(1, 2, 3,
+ 4, 5, 6)
+#: E127
+foo(1, 2, 3,
+ 4, 5, 6)
+#: E127
+foo(1, 2, 3,
4, 5, 6)
#: E127
foo(1, 2, 3,