diff options
Diffstat (limited to 'Lib/test/test_extcall.py')
-rw-r--r-- | Lib/test/test_extcall.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_extcall.py b/Lib/test/test_extcall.py index 422ccea..9b5994d 100644 --- a/Lib/test/test_extcall.py +++ b/Lib/test/test_extcall.py @@ -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}) |