[Python-checkins] CVS: python/dist/src/Lib/test test_new.py,1.10,1.11

Jeremy Hylton jhylton@users.sourceforge.net
Thu, 01 Feb 2001 11:50:31 -0800


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

Modified Files:
	test_new.py 
Log Message:
move extra arguments to the back of the new.code() arglist


Index: test_new.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_new.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** test_new.py	2001/01/28 03:57:39	1.10
--- test_new.py	2001/02/01 19:50:29	1.11
***************
*** 67,71 ****
  # bogus test of new.code()
  print 'new.code()'
! d = new.code(3, 3, 3, 3, codestr, (), (), (), (), (),
               "<string>", "<name>", 1, "")
  if verbose:
--- 67,74 ----
  # bogus test of new.code()
  print 'new.code()'
! d = new.code(3, 3, 3, 3, codestr, (), (), (), 
!              "<string>", "<name>", 1, "", (), ())
! # test backwards-compatibility version with no freevars or cellvars
! d = new.code(3, 3, 3, 3, codestr, (), (), (), 
               "<string>", "<name>", 1, "")
  if verbose: