diff options
author | Samuele Pedroni <pedronis@openend.se> | 2004-02-21 21:03:30 (GMT) |
---|---|---|
committer | Samuele Pedroni <pedronis@openend.se> | 2004-02-21 21:03:30 (GMT) |
commit | 8036c836305f9770d6b242ccd504b543476058ff (patch) | |
tree | cba12b7d3c8dae6bc31d85d21d62388815bae22e /Lib/test/output | |
parent | 0bc9c919e80f0a1b2815ca98d273251fb344067a (diff) | |
download | cpython-8036c836305f9770d6b242ccd504b543476058ff.zip cpython-8036c836305f9770d6b242ccd504b543476058ff.tar.gz cpython-8036c836305f9770d6b242ccd504b543476058ff.tar.bz2 |
adding passing test. testing for g(*Nothing()) where Nothing is a user-defined iterator.
Diffstat (limited to 'Lib/test/output')
-rw-r--r-- | Lib/test/output/test_extcall | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/output/test_extcall b/Lib/test/output/test_extcall index 15a5c65..cb93b0d 100644 --- a/Lib/test/output/test_extcall +++ b/Lib/test/output/test_extcall @@ -17,6 +17,7 @@ TypeError: g() takes at least 1 argument (0 given) 1 (2, 3) {} 1 (2, 3, 4, 5) {} 0 (1, 2) {} +0 (1, 2, 3) {} 1 () {'a': 1, 'b': 2, 'c': 3, 'd': 4} {'a': 1, 'b': 2, 'c': 3} {'a': 1, 'b': 2, 'c': 3} |