summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xpycodestyle.py4
-rw-r--r--testsuite/python38.py3
2 files changed, 6 insertions, 1 deletions
diff --git a/pycodestyle.py b/pycodestyle.py
index 0d8ed50..ac584ce 100755
--- a/pycodestyle.py
+++ b/pycodestyle.py
@@ -933,7 +933,9 @@ def missing_whitespace_around_operator(logical_line, tokens):
# ^
# def f(a, b, /):
# ^
- prev_text == '/' and text in {',', ')'} or
+ # f = lambda a, /:
+ # ^
+ prev_text == '/' and text in {',', ')', ':'} or
# def f(a, b, /):
# ^
prev_text == ')' and text == ':'
diff --git a/testsuite/python38.py b/testsuite/python38.py
index 57ee613..f927673 100644
--- a/testsuite/python38.py
+++ b/testsuite/python38.py
@@ -13,6 +13,9 @@ def f3(
b,
):
pass
+
+
+lambda a, /: None
#: Okay
if x := 1:
print(x)