[Python-checkins] CVS: python/dist/src/Lib/test/output test_exceptions,1.5,1.6 test_grammar,1.12,1.13

Jeremy Hylton jhylton@users.sourceforge.net
Thu, 01 Feb 2001 14:48:14 -0800


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

Modified Files:
	test_exceptions test_grammar 
Log Message:
Allow 'continue' inside 'try' clause
SF patch 102989 by Thomas Wouters


Index: test_exceptions
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/output/test_exceptions,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** test_exceptions	2000/09/08 16:32:34	1.5
--- test_exceptions	2001/02/01 22:48:12	1.6
***************
*** 28,36 ****
  spam
  SyntaxError
! 'continue' not supported inside 'try' clause
! ok
! 'continue' not supported inside 'try' clause
! ok
! 'continue' not supported inside 'try' clause
  ok
  'continue' not properly in loop
--- 28,32 ----
  spam
  SyntaxError
! 'continue' not supported inside 'finally' clause
  ok
  'continue' not properly in loop

Index: test_grammar
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/output/test_grammar,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -r1.12 -r1.13
*** test_grammar	2001/02/01 20:20:45	1.12
--- test_grammar	2001/02/01 22:48:12	1.13
***************
*** 34,37 ****
--- 34,39 ----
  break_stmt
  continue_stmt
+ continue + try/except ok
+ continue + try/finally ok
  return_stmt
  raise_stmt