mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
fix previous checkin
This commit is contained in:
parent
aed0d8deb0
commit
003663d783
3 changed files with 8 additions and 24 deletions
|
@ -4,6 +4,8 @@ test_extcall
|
|||
(1, 2) {}
|
||||
(1, 2, 3) {}
|
||||
(1, 2, 3, 4, 5) {}
|
||||
(1, 2, 3, 4, 5) {}
|
||||
(1, 2, 3, 4, 5) {}
|
||||
(1, 2, 3) {'b': 5, 'a': 4}
|
||||
(1, 2, 3, 4, 5) {'b': 7, 'a': 6}
|
||||
(1, 2, 3, 6, 7) {'y': 5, 'b': 9, 'x': 4, 'a': 8}
|
||||
|
@ -16,3 +18,8 @@ TypeError: not enough arguments; expected 1, got 0
|
|||
1 (2, 3, 4, 5) {}
|
||||
keyword parameter redefined: x
|
||||
keyword parameter redefined: b
|
||||
keywords must be strings
|
||||
unexpected keyword argument: e
|
||||
* argument must be a sequence
|
||||
** argument must be a dictionary
|
||||
3 512 1
|
||||
|
|
|
@ -42,29 +42,6 @@ additive ops
|
|||
multiplicative ops
|
||||
unary ops
|
||||
selectors
|
||||
.
|
||||
.
|
||||
.
|
||||
.
|
||||
.
|
||||
.
|
||||
.
|
||||
.
|
||||
.
|
||||
.
|
||||
.
|
||||
.
|
||||
.
|
||||
.
|
||||
.
|
||||
.
|
||||
.
|
||||
.
|
||||
.
|
||||
.
|
||||
.
|
||||
.
|
||||
.
|
||||
|
||||
atoms
|
||||
classdef
|
||||
|
|
|
@ -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