summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorAntony Lee <anntzer.lee@gmail.com>2022-04-16 23:59:44 +0200
committerAntony Lee <anntzer.lee@gmail.com>2022-04-17 00:12:03 +0200
commit52513b30195fe0d985a64e972c1218489cae7042 (patch)
treeb177b33b4d4788f6384c8ec23c222cc8d992b839 /testsuite
parentc9bb97f9f80fec09711189a02a82efeffdcd01f9 (diff)
downloadpep8-52513b30195fe0d985a64e972c1218489cae7042.tar.gz
Generalize E275 to require space after all keywords, not just "import".
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/E12not.py6
-rw-r--r--testsuite/E27.py5
-rw-r--r--testsuite/W19.py6
3 files changed, 11 insertions, 6 deletions
diff --git a/testsuite/E12not.py b/testsuite/E12not.py
index 2e2366c..7677659 100644
--- a/testsuite/E12not.py
+++ b/testsuite/E12not.py
@@ -40,8 +40,8 @@ a = (123,
if start[1] > end_col and not (
over_indent == 4 and indent_next):
- return(0, "E121 continuation line over-"
- "indented for visual indent")
+ return (0, "E121 continuation line over-"
+ "indented for visual indent")
print "OK", ("visual",
@@ -175,7 +175,7 @@ fooff(aaaa,
#
if bar:
- return(
+ return (
start, 'E121 lines starting with a '
'closing bracket should be indented '
"to match that of the opening "
diff --git a/testsuite/E27.py b/testsuite/E27.py
index 9bb53f8..91aa079 100644
--- a/testsuite/E27.py
+++ b/testsuite/E27.py
@@ -42,5 +42,10 @@ try:
from importable.module import(e, f)
except ImportError:
pass
+#: E275
+if(foo):
+ pass
+else:
+ pass
#: Okay
matched = {"true": True, "false": False}
diff --git a/testsuite/W19.py b/testsuite/W19.py
index ed69e2b..9d4eb4d 100644
--- a/testsuite/W19.py
+++ b/testsuite/W19.py
@@ -41,8 +41,8 @@ if (
#: E101 E101 W191 W191
if start[1] > end_col and not (
over_indent == 4 and indent_next):
- return(0, "E121 continuation line over-"
- "indented for visual indent")
+ return (0, "E121 continuation line over-"
+ "indented for visual indent")
#:
#: E101 W191
@@ -58,7 +58,7 @@ if ((row < 0 or self.moduleCount <= row or
raise Exception("%s,%s - %s" % (row, col, self.moduleCount))
#: E101 E101 E101 E101 W191 W191 W191 W191 W191 W191
if bar:
- return(
+ return (
start, 'E121 lines starting with a '
'closing bracket should be indented '
"to match that of the opening "