fix previous checkin

This commit is contained in:
Jeremy Hylton 2000-03-28 23:53:22 +00:00
parent aed0d8deb0
commit 003663d783
3 changed files with 8 additions and 24 deletions

View file

@ -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})