summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lee <IanLee1521@gmail.com>2016-05-24 08:50:51 -0700
committerIan Lee <IanLee1521@gmail.com>2016-05-24 08:50:51 -0700
commit3141151274639af01c1fddb9fae6b4b5f42d790e (patch)
treeea64dd767663f703fa365b119e50b556096af2f5
parent53a24414787f93ec11beb18e7d60ba773c978eb8 (diff)
parent2f6c43bcb3a6bac525198646e99f12b013e4e460 (diff)
downloadpep8-3141151274639af01c1fddb9fae6b4b5f42d790e.tar.gz
Merge pull request #508 from PyCQA/bug/507
Allow spaces around = in async definitions
-rwxr-xr-xpep8.py3
-rw-r--r--testsuite/E25.py3
2 files changed, 5 insertions, 1 deletions
diff --git a/pep8.py b/pep8.py
index 499c370..247a626 100755
--- a/pep8.py
+++ b/pep8.py
@@ -776,6 +776,7 @@ def whitespace_around_named_parameter_equals(logical_line, tokens):
Okay: boolean(a <= b)
Okay: boolean(a >= b)
Okay: def foo(arg: int = 42):
+ Okay: async def foo(arg: int = 42):
E251: def complex(real, imag = 0.0):
E251: return magic(r = real, i = imag)
@@ -784,7 +785,7 @@ def whitespace_around_named_parameter_equals(logical_line, tokens):
no_space = False
prev_end = None
annotated_func_arg = False
- in_def = logical_line.startswith('def')
+ in_def = logical_line.startswith(('def', 'async def'))
message = "E251 unexpected spaces around keyword / parameter equals"
for token_type, text, start, end, line in tokens:
if token_type == tokenize.NL:
diff --git a/testsuite/E25.py b/testsuite/E25.py
index 7d00310..7a536b5 100644
--- a/testsuite/E25.py
+++ b/testsuite/E25.py
@@ -35,3 +35,6 @@ d[type(None)] = _deepcopy_atomic
def munge(input: AnyStr, sep: AnyStr = None, limit=1000,
extra: Union[str, dict] = None) -> AnyStr:
pass
+#: Okay
+async def add(a: int = 0, b: int = 0) -> int:
+ return a + b