summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lee <IanLee1521@gmail.com>2014-12-29 10:45:28 -0800
committerIan Lee <IanLee1521@gmail.com>2014-12-29 10:45:28 -0800
commit725e0f221231f422fa4d34cb421c36bbfa5d0d60 (patch)
tree1f0b3d307e2fc9205bdd7864722aa5c58e292166
parenta21598e67abeb557f85855cdc04106c7c212f09b (diff)
parent219db61762dd442a2a0ec02c2962e2313a0fd128 (diff)
downloadpep8-725e0f221231f422fa4d34cb421c36bbfa5d0d60.tar.gz
Merge pull request #361 from jcrocholl/issue-357
Allow spaces around equals sign of an annotated function definition
-rw-r--r--CHANGES.txt2
-rwxr-xr-xpep8.py12
-rw-r--r--testsuite/E25.py5
3 files changed, 18 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 774a90d..91a2095 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -34,6 +34,8 @@ Changes:
* Do not report E121 or E126 in the default configuration. (Issues #256 / #316)
+* Allow spaces around the equals sign in an annotated function. (Issue #357)
+
Bug fixes:
* Don't crash if Checker.build_tokens_line() returns None. (Issue #306)
diff --git a/pep8.py b/pep8.py
index 940a272..67b32d1 100755
--- a/pep8.py
+++ b/pep8.py
@@ -754,6 +754,7 @@ def whitespace_around_named_parameter_equals(logical_line, tokens):
Okay: boolean(a != b)
Okay: boolean(a <= b)
Okay: boolean(a >= b)
+ Okay: def foo(arg: int = 42):
E251: def complex(real, imag = 0.0):
E251: return magic(r = real, i = imag)
@@ -761,6 +762,8 @@ def whitespace_around_named_parameter_equals(logical_line, tokens):
parens = 0
no_space = False
prev_end = None
+ annotated_func_arg = False
+ in_def = logical_line.startswith('def')
message = "E251 unexpected spaces around keyword / parameter equals"
for token_type, text, start, end, line in tokens:
if token_type == tokenize.NL:
@@ -774,10 +777,17 @@ def whitespace_around_named_parameter_equals(logical_line, tokens):
parens += 1
elif text == ')':
parens -= 1
- elif parens and text == '=':
+ elif in_def and text == ':' and parens == 1:
+ annotated_func_arg = True
+ elif parens and text == ',' and parens == 1:
+ annotated_func_arg = False
+ elif parens and text == '=' and not annotated_func_arg:
no_space = True
if start != prev_end:
yield (prev_end, message)
+ if not parens:
+ annotated_func_arg = False
+
prev_end = end
diff --git a/testsuite/E25.py b/testsuite/E25.py
index 9b7ff69..ad8db88 100644
--- a/testsuite/E25.py
+++ b/testsuite/E25.py
@@ -29,3 +29,8 @@ foo(bar=(1 >= 1))
foo(bar=(1 <= 1))
(options, args) = parser.parse_args()
d[type(None)] = _deepcopy_atomic
+
+# Annotated Function Definitions
+#: Okay
+def munge(input: AnyStr, sep: AnyStr = None, limit=1000) -> AnyStr:
+ pass