[Python-checkins] CVS: python/dist/src/Lib/test/output test_extcall,1.10,1.11

Guido van Rossum gvanrossum@users.sourceforge.net
Fri, 24 Aug 2001 12:31:45 -0700


Update of /cvsroot/python/python/dist/src/Lib/test/output
In directory usw-pr-cvs1:/tmp/cvs-serv26171

Modified Files:
	test_extcall 
Log Message:
Update test output to match new (more informative) error message about
calling unbound method with wrong first argument.


Index: test_extcall
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/output/test_extcall,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** test_extcall	2001/08/16 08:32:39	1.10
--- test_extcall	2001/08/24 19:31:43	1.11
***************
*** 35,40 ****
  3
  3
! unbound method method() must be called with instance as first argument
! unbound method method() must be called with instance as first argument
  za () {} -> za() takes exactly 1 argument (0 given)
  za () {'a': 'aa'} -> ok za aa B D E V a
--- 35,40 ----
  3
  3
! 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