mirror of
https://github.com/python/cpython.git
synced 2025-08-30 13:38:43 +00:00
fix previous checkin
This commit is contained in:
parent
aed0d8deb0
commit
003663d783
3 changed files with 8 additions and 24 deletions
|
@ -16,7 +16,7 @@ f(1, 2, 3)
|
|||
|
||||
f(1, 2, 3, *(4, 5))
|
||||
f(1, 2, 3, *[4, 5])
|
||||
f(1, 2, 3, *UserList([4, 5])
|
||||
f(1, 2, 3, *UserList([4, 5]))
|
||||
f(1, 2, 3, **{'a':4, 'b':5})
|
||||
f(1, 2, 3, *(4, 5), **{'a':6, 'b':7})
|
||||
f(1, 2, 3, x=4, y=5, *(6, 7), **{'a':8, 'b':9})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue