mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
count keyword only arguments as part of the total
This commit is contained in:
parent
f3b7a25a21
commit
afcee8b78d
2 changed files with 8 additions and 2 deletions
|
@ -280,6 +280,12 @@ The number of arguments passed in includes keywords:
|
|||
Traceback (most recent call last):
|
||||
...
|
||||
TypeError: f() takes exactly 1 argument (5 given)
|
||||
>>> def f(a, *, kw):
|
||||
... pass
|
||||
>>> f(6, 4, kw=4)
|
||||
Traceback (most recent call last):
|
||||
...
|
||||
TypeError: f() takes exactly 2 arguments (3 given)
|
||||
"""
|
||||
|
||||
import sys
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue