mirror of
https://github.com/python/cpython.git
synced 2025-12-15 21:44:50 +00:00
gh-127610: Added validation for more than one var-positional and var-keyword parameters in inspect.Signature (GH-127657)
This commit is contained in:
parent
70154855cf
commit
1503fc8f88
4 changed files with 23 additions and 0 deletions
|
|
@ -2992,6 +2992,17 @@ class TestSignatureObject(unittest.TestCase):
|
|||
with self.assertRaisesRegex(ValueError, 'follows default argument'):
|
||||
S((pkd, pk))
|
||||
|
||||
second_args = args.replace(name="second_args")
|
||||
with self.assertRaisesRegex(ValueError, 'more than one variadic positional parameter'):
|
||||
S((args, second_args))
|
||||
|
||||
with self.assertRaisesRegex(ValueError, 'more than one variadic positional parameter'):
|
||||
S((args, ko, second_args))
|
||||
|
||||
second_kwargs = kwargs.replace(name="second_kwargs")
|
||||
with self.assertRaisesRegex(ValueError, 'more than one variadic keyword parameter'):
|
||||
S((kwargs, second_kwargs))
|
||||
|
||||
def test_signature_object_pickle(self):
|
||||
def foo(a, b, *, c:1={}, **kw) -> {42:'ham'}: pass
|
||||
foo_partial = functools.partial(foo, a=1)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue