summaryrefslogtreecommitdiff
path: root/testsuite/E12not.py
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/E12not.py')
-rw-r--r--testsuite/E12not.py29
1 files changed, 12 insertions, 17 deletions
diff --git a/testsuite/E12not.py b/testsuite/E12not.py
index 34d6efe..ebaa078 100644
--- a/testsuite/E12not.py
+++ b/testsuite/E12not.py
@@ -16,12 +16,11 @@ if x == 2 \
or y > 1 \
or x == 3:
pass
-
-
+#: W503
if (foo == bar
and baz == frop):
pass
-
+#: W503
if (
foo == bar
and baz == frop
@@ -108,7 +107,7 @@ sat = 'AAA' \
'BBB' \
'iii' \
'CCC'
-
+#: W504 W504
abricot = (3 +
4 +
5 + 6)
@@ -137,8 +136,7 @@ def long_function_name(
var_one, var_two, var_three,
var_four):
print(var_one)
-
-
+#: W504
if ((row < 0 or self.moduleCount <= row or
col < 0 or self.moduleCount <= col)):
raise Exception("%s,%s - %s" % (row, col, self.moduleCount))
@@ -183,23 +181,23 @@ if bar:
"to match that of the opening "
"bracket's line"
)
-#
+#: W504
# you want vertical alignment, so use a parens
if ((foo.bar("baz") and
foo.bar("frop")
)):
print "yes"
-
+#: W504
# also ok, but starting to look like LISP
if ((foo.bar("baz") and
foo.bar("frop"))):
print "yes"
-
+#: W504
if (a == 2 or
b == "abc def ghi"
"jkl mno"):
return True
-
+#: W504
if (a == 2 or
b == """abc def ghi
jkl mno"""):
@@ -223,22 +221,19 @@ print 'l.{line}\t{pos}\t{name}\t{text}'.format(
print('%-7d %s per second (%d total)' % (
options.counters[key] / elapsed, key,
options.counters[key]))
-
-
+#: W504
if os.path.exists(os.path.join(path, PEP8_BIN)):
cmd = ([os.path.join(path, PEP8_BIN)] +
self._pep8_options(targetfile))
-
-
+#: W504
fixed = (re.sub(r'\t+', ' ', target[c::-1], 1)[::-1] +
target[c + 1:])
-
+#: W504
fixed = (
re.sub(r'\t+', ' ', target[c::-1], 1)[::-1] +
target[c + 1:]
)
-
-
+#: W504
if foo is None and bar is "frop" and \
blah == 'yeah':
blah = 'yeahnah'