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

Guido van Rossum gvanrossum@users.sourceforge.net
Thu, 16 Aug 2001 01:32:41 -0700


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

Modified Files:
	test_extcall 
Log Message:
The change of type(None).__name__ from 'None' to 'NoneType' broke this
test in a trivial way.  Fixed.


Index: test_extcall
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/output/test_extcall,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** test_extcall	2001/05/13 00:19:31	1.9
--- test_extcall	2001/08/16 08:32:39	1.10
***************
*** 27,34 ****
  h() argument after * must be a sequence
  dir() argument after * must be a sequence
! None object argument after * must be a sequence
  h() argument after ** must be a dictionary
  dir() argument after ** must be a dictionary
! None object argument after ** must be a dictionary
  dir() got multiple values for keyword argument 'b'
  3 512 1
--- 27,34 ----
  h() argument after * must be a sequence
  dir() argument after * must be a sequence
! NoneType object argument after * must be a sequence
  h() argument after ** must be a dictionary
  dir() argument after ** must be a dictionary
! NoneType object argument after ** must be a dictionary
  dir() got multiple values for keyword argument 'b'
  3 512 1