You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow non-final __match_args__ and overriding (#12415)
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).
0 commit comments