Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add support for PEP 696 generic defaults #1278

Merged
merged 1 commit into from
Mar 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 19 additions & 9 deletions pycodestyle.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@
LAMBDA_REGEX = re.compile(r'\blambda\b')
HUNK_REGEX = re.compile(r'^@@ -\d+(?:,\d+)? \+(\d+)(?:,(\d+))? @@.*$')
STARTSWITH_DEF_REGEX = re.compile(r'^(async\s+def|def)\b')
STARTSWITH_GENERIC_REGEX = re.compile(r'^(async\s+def|def|class|type)\s+\w+\[')
STARTSWITH_TOP_LEVEL_REGEX = re.compile(r'^(async\s+def\s+|def\s+|class\s+|@)')
STARTSWITH_INDENT_STATEMENT_REGEX = re.compile(
r'^\s*({})\b'.format('|'.join(s.replace(' ', r'\s+') for s in (
Expand Down Expand Up @@ -1019,12 +1020,13 @@ def whitespace_around_named_parameter_equals(logical_line, tokens):
E251: return magic(r = real, i = imag)
E252: def complex(real, image: float=0.0):
"""
parens = 0
paren_stack = []
no_space = False
require_space = False
prev_end = None
annotated_func_arg = False
in_def = bool(STARTSWITH_DEF_REGEX.match(logical_line))
in_generic = bool(STARTSWITH_GENERIC_REGEX.match(logical_line))

message = "E251 unexpected spaces around keyword / parameter equals"
missing_message = "E252 missing whitespace around parameter equals"
Expand All @@ -1042,23 +1044,31 @@ def whitespace_around_named_parameter_equals(logical_line, tokens):
yield (prev_end, missing_message)
if token_type == tokenize.OP:
if text in '([':
parens += 1
elif text in ')]':
parens -= 1
elif in_def and text == ':' and parens == 1:
paren_stack.append(text)
elif text in ')]' and paren_stack:
paren_stack.pop()
elif (
text == ':' and (
# def f(arg: tp = default): ...
(in_def and paren_stack == ['(']) or
# def f[T: tp = default](): ...
# class C[T: tp = default](): ...
(in_generic and paren_stack == ['['])
)
):
annotated_func_arg = True
elif parens == 1 and text == ',':
elif len(paren_stack) == 1 and text == ',':
annotated_func_arg = False
elif parens and text == '=':
if annotated_func_arg and parens == 1:
elif paren_stack and text == '=':
if annotated_func_arg and len(paren_stack) == 1:
require_space = True
if start == prev_end:
yield (prev_end, missing_message)
else:
no_space = True
if start != prev_end:
yield (prev_end, message)
if not parens:
if not paren_stack:
annotated_func_arg = False

prev_end = end
Expand Down
9 changes: 9 additions & 0 deletions testing/data/python313.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
type Alias[T: (int, str) = str] = list[T]


class C[T: (int, str) = str]:
pass


def f[T: (int, str) = str](t: T) -> T:
pass
4 changes: 2 additions & 2 deletions tests/test_E901.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def lasting(self, duration=300):
'''
errors = errors_from_src(src)
if sys.version_info < (3, 12): # pragma: <3.12 cover
expected = ['E122:4:1', 'E251:5:13', 'E251:5:15']
expected = ['E122:4:1']
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

these were due to the E251 check under flowing (which it no longer does now that we track parens in a stack)

else: # pragma: >=3.12 cover
expected = ['E122:4:1', 'E251:5:13', 'E251:5:15', 'E901:5:1'] # noqa: E501
expected = ['E122:4:1', 'E901:5:1'] # noqa: E501
self.assertEqual(errors, expected)