From: Guido van Rossum Date: Tue, 31 Mar 1992 18:54:11 +0000 (+0000) Subject: Some weird forms of try statements are no longer allowed. X-Git-Tag: v0.9.8~415 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=627efd94e97d9e7fadba7f863beca5993a91a274;p=thirdparty%2FPython%2Fcpython.git Some weird forms of try statements are no longer allowed. --- diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py index 3f1447f68254..9662439669c9 100644 --- a/Lib/test/test_grammar.py +++ b/Lib/test/test_grammar.py @@ -193,9 +193,8 @@ for i, j, k in (): pass else: pass [3] -print 'try_stmt' # 'try' ':' suite (except_clause ':' suite)* ['finally' ':' suite] +print 'try_stmt' # 'try' ':' suite (except_clause ':' suite)+ | 'try' ':' suite 'finally' ':' suite ### except_clause: 'except' [expr [',' expr]] -try: pass try: 1/0 except ZeroDivisionError: pass try: 1/0 @@ -205,9 +204,6 @@ except RuntimeError, msg: pass except: pass try: pass finally: pass -try: 1/0 -except: pass -finally: pass print 'suite' # simple_stmt | NEWLINE INDENT NEWLINE* (stmt NEWLINE*)+ DEDENT if 1: pass