We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
'arguments-v3'
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
Following #1641, some improvements that could be implemented:
deduplicate name and lookup_key_collection (comment):
name
lookup_key_collection
pydantic-core/src/validators/arguments_v3.rs
Lines 49 to 52 in b6a2ca1
Extract potential var_args/var_kwargs parameter (comment):
positional_args: Vec<Parameter>, var_args: Option<Parameter>, keyword_only_args: Vec<Parameter>, var_kwargs: Option<Parameter>,
Extra behavior for extra args, when input is ArgsKwargs. Currently, this is relevant for kwargs (on both schema types), but not for args (comment).
ArgsKwargs
The text was updated successfully, but these errors were encountered:
arguments-v3
No branches or pull requests
Following #1641, some improvements that could be implemented:
deduplicate
name
andlookup_key_collection
(comment):pydantic-core/src/validators/arguments_v3.rs
Lines 49 to 52 in b6a2ca1
Extract potential var_args/var_kwargs parameter (comment):
Extra behavior for extra args, when input is
ArgsKwargs
. Currently, this is relevant for kwargs (on both schema types), but not for args (comment).The text was updated successfully, but these errors were encountered: