Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork3.1k
Reject duplicateParamSpec.{args,kwargs} at call site#18854
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Merged
hauntsaninja merged 5 commits intopython:masterfromsterliakov:bugfix/gh-18035-duplicate-paramspec-componentsApr 1, 2025
Uh oh!
There was an error while loading.Please reload this page.
Merged
Changes from1 commit
Commits
Show all changes
5 commits Select commitHold shift + click to select a range
d3e7a9e Reject duplicate ParamSpec components
sterliakov6431675 Update other affected tests
sterliakov11e0d83 Only emit this diagnistic if they are actually ParamSpec parts
sterliakove4ca078 Trim whitespace from --update-data
sterliakovdaa3ccd Add test lines with aliased args/kwargs
sterliakovFile filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
NextNext commit
Reject duplicate ParamSpec components
- Loading branch information
Uh oh!
There was an error while loading.Please reload this page.
commitd3e7a9e34987cbf2ba8b446759c5ece77e9960fe
There are no files selected for viewing
29 changes: 17 additions & 12 deletionsmypy/checkexpr.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletionstest-data/unit/check-parameter-specification.test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -2560,3 +2560,26 @@ def fn(f: MiddlewareFactory[P]) -> Capture[P]: ... | ||
| reveal_type(fn(ServerErrorMiddleware)) # N: Revealed type is "__main__.Capture[[handler: Union[builtins.str, None] =, debug: builtins.bool =]]" | ||
| [builtins fixtures/paramspec.pyi] | ||
| [case testRunParamSpecDuplicateArgsKwargs] | ||
| from typing_extensions import ParamSpec, Concatenate | ||
| from typing import Callable | ||
| _P = ParamSpec("_P") | ||
| def run(predicate: Callable[_P, None], *args: _P.args, **kwargs: _P.kwargs) -> None: | ||
| predicate(*args, *args, **kwargs) # E: ParamSpec.args should only be passed once | ||
| predicate(*args, **kwargs, **kwargs) # E: ParamSpec.kwargs should only be passed once | ||
| predicate(*args, *args, **kwargs, **kwargs) # E: ParamSpec.args should only be passed once \ | ||
| # E: ParamSpec.kwargs should only be passed once | ||
sterliakov marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
| def run2(predicate: Callable[Concatenate[int, _P], None], *args: _P.args, **kwargs: _P.kwargs) -> None: | ||
| predicate(*args, *args, **kwargs) # E: ParamSpec.args should only be passed once \ | ||
| # E: Argument 1 has incompatible type "*_P.args"; expected "int" | ||
| predicate(*args, **kwargs, **kwargs) # E: ParamSpec.kwargs should only be passed once \ | ||
| # E: Argument 1 has incompatible type "*_P.args"; expected "int" | ||
| predicate(1, *args, *args, **kwargs) # E: ParamSpec.args should only be passed once | ||
| predicate(1, *args, **kwargs, **kwargs) # E: ParamSpec.kwargs should only be passed once | ||
| predicate(1, *args, *args, **kwargs, **kwargs) # E: ParamSpec.args should only be passed once \ | ||
| # E: ParamSpec.kwargs should only be passed once | ||
| [builtins fixtures/paramspec.pyi] | ||
Oops, something went wrong.
Uh oh!
There was an error while loading.Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.