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

Allow non-final __match_args__ and overriding #12415

Merged
merged 4 commits into from Mar 22, 2022
Merged

Conversation

JukkaL
Copy link
Collaborator

@JukkaL JukkaL commented Mar 21, 2022

Allow subclasses to override __match_args__ freely, and don't require
__match_args__ to be final.

This matches runtime behavior. For example, if B subclasses A,
case A(...) also matches instances of B, using the __match_args__
from A.

The issue was brough up by @AlexWaygood in
#12411 (comment).

@github-actions

This comment has been minimized.

1 similar comment
@github-actions
Copy link
Contributor

Diff from mypy_primer, showing the effect of this PR on open source code:

ppb-vector (https://github.com/ppb/ppb-vector)
- ppb_vector/__init__.py:107: note: __match_args__ must be final for checking of match statements to work

@JukkaL JukkaL merged commit 718b50e into master Mar 22, 2022
@JukkaL JukkaL deleted the fix-match-args-override branch March 22, 2022 09:55
JukkaL added a commit that referenced this pull request Mar 22, 2022
Allow subclasses to override `__match_args__` freely, and don't require
`__match_args__` to be final. 

This matches runtime behavior. For example, if `B` subclasses `A`, 
`case A(...)` also matches instances of `B`, using the `__match_args__` 
from `A`.

The issue was brough up by @AlexWaygood in 
#12411 (comment).
AlexWaygood added a commit to AlexWaygood/mypy that referenced this pull request Mar 26, 2022
python#12415 (included in release 0.942) unblocked typeshed from adding missing `__match_args__` attributes (see python/typeshed#7556). This means stubtest is now unblocked from checking the correctness of `__match_args__` attributes in the stub!
JelleZijlstra pushed a commit that referenced this pull request Mar 27, 2022
#12415 (included in release 0.942) unblocked typeshed from adding missing `__match_args__` attributes (see python/typeshed#7556). This means stubtest is now unblocked from checking the correctness of `__match_args__` attributes in the stub!
@AlexWaygood
Copy link
Member

AlexWaygood commented Mar 27, 2022

I'm pleased to confirm that this fixed the issue for typeshed — typeshed has now added missing __match_args__ attributes in _ast.pyi, as well as several other modules (python/typeshed#7556)

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.

None yet

3 participants