summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_extcall.py
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2000-03-28 23:53:22 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2000-03-28 23:53:22 (GMT)
commit003663d78372a33ddbc57594d0176fa39996a84d (patch)
treea4f955cec1cecc092b4b901762c4bb023e61eba3 /Lib/test/test_extcall.py
parentaed0d8deb0c810db32f5370c0f089266bb349962 (diff)
downloadcpython-003663d78372a33ddbc57594d0176fa39996a84d.zip
cpython-003663d78372a33ddbc57594d0176fa39996a84d.tar.gz
cpython-003663d78372a33ddbc57594d0176fa39996a84d.tar.bz2
fix previous checkin
Diffstat (limited to 'Lib/test/test_extcall.py')
-rw-r--r--Lib/test/test_extcall.py2
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})