Commit 003663d7 authored by Jeremy Hylton's avatar Jeremy Hylton

fix previous checkin

parent aed0d8de
......@@ -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})
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment