diff options
author | Guido van Rossum <guido@python.org> | 2001-08-24 19:31:43 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-08-24 19:31:43 (GMT) |
commit | d320ad08bfaae398a0c4af998b788090cd77aa88 (patch) | |
tree | abfa5e7ce9007a0e1928b297bef8f6fa99b534a5 /Lib/test | |
parent | 191487351abb5d2b7daf9d839ca2b3a3c7fdc07b (diff) | |
download | cpython-d320ad08bfaae398a0c4af998b788090cd77aa88.zip cpython-d320ad08bfaae398a0c4af998b788090cd77aa88.tar.gz cpython-d320ad08bfaae398a0c4af998b788090cd77aa88.tar.bz2 |
Update test output to match new (more informative) error message about
calling unbound method with wrong first argument.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/output/test_extcall | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/output/test_extcall b/Lib/test/output/test_extcall index 86da352..b00849c 100644 --- a/Lib/test/output/test_extcall +++ b/Lib/test/output/test_extcall @@ -34,8 +34,8 @@ dir() got multiple values for keyword argument 'b' 3 512 1 3 3 -unbound method method() must be called with instance as first argument -unbound method method() must be called with instance as first argument +unbound method method() must be called with Foo instance as first argument (got int instance instead) +unbound method method() must be called with Foo instance as first argument (got int instance instead) za () {} -> za() takes exactly 1 argument (0 given) za () {'a': 'aa'} -> ok za aa B D E V a za () {'d': 'dd'} -> za() got an unexpected keyword argument 'd' |