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

Support structural pattern matching in ASYNC103,104 and 91X #363

Merged
merged 5 commits into from
Apr 1, 2025

Conversation

jakkdl
Copy link
Member

@jakkdl jakkdl commented Mar 31, 2025

fixes #173

@jakkdl jakkdl requested a review from Copilot March 31, 2025 14:13
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

This pull request enhances support for structural pattern matching in asynchronous contexts for ASYNC103/104 and ASYNC91X while fixing issue #173. The changes include updates to several test files to cover new async pattern matching cases, autofix implementations with asynchronous checkpointing, and modifications to the flake8_async visitors for structural match handling.

Reviewed Changes

Copilot reviewed 6 out of 7 changed files in this pull request and generated no comments.

Show a summary per file
File Description
tests/eval_files/async91x_py310.py Adds async pattern matching test cases for structural matching scenarios
tests/eval_files/async103_104_py310.py Introduces pattern matching tests for ASYNC103/ASYNC104
tests/autofix_files/async91x_py310.py Provides autofix support with added checkpointing in async matching cases
flake8_async/visitors/visitor91x.py Adds MatchState and adjusts state handling for match constructs
flake8_async/visitors/visitor103_104.py Implements match visitor logic for pattern matching in exception handlers
.pre-commit-config.yaml Updates file exclusion regex to support py310 and py311 test files
Files not reviewed (1)
  • tests/autofix_files/async91x_py310.py.diff: Language not supported
Comments suppressed due to low confidence (2)

flake8_async/visitors/visitor91x.py:920

  • [nitpick] Consider using explicit keyword arguments when instantiating MatchState (e.g., base_uncheckpointed_statements=self.uncheckpointed_statements.copy()) to improve clarity.
self.match_state = MatchState(self.uncheckpointed_statements.copy())

tests/eval_files/async103_104_py310.py:57

  • [nitpick] The variable name 'blah' is ambiguous; consider renaming it to a more descriptive identifier.
case blah:

Copy link
Member

@Zac-HD Zac-HD left a comment

Choose a reason for hiding this comment

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

Looks great! Let's merge tomorrow to match the release number to the month 😁

@jakkdl jakkdl merged commit 143795f into python-trio:main Apr 1, 2025
11 checks passed
@jakkdl jakkdl deleted the support_match branch April 1, 2025 12:50
@jakkdl
Copy link
Member Author

jakkdl commented Apr 1, 2025

haha, I didn't expect a same-day review 😁

@Zac-HD
Copy link
Member

Zac-HD commented Apr 1, 2025

(definitely a good call this close to the line)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Support match/case, exception groups
2 participants