From: <fwi...@us...> - 2008-07-23 19:13:07
|
Revision: 4990 http://jython.svn.sourceforge.net/jython/?rev=4990&view=rev Author: fwierzbicki Date: 2008-07-23 19:13:04 +0000 (Wed, 23 Jul 2008) Log Message: ----------- Made except blocks optional in PythonPartial.g since: try: Is a valid partial parse. Modified Paths: -------------- branches/asm/grammar/PythonPartial.g Modified: branches/asm/grammar/PythonPartial.g =================================================================== --- branches/asm/grammar/PythonPartial.g 2008-07-23 18:39:09 UTC (rev 4989) +++ branches/asm/grammar/PythonPartial.g 2008-07-23 19:13:04 UTC (rev 4990) @@ -376,7 +376,7 @@ try_stmt : 'try' COLON suite ( except_clause+ ('else' COLON suite)? ('finally' COLON suite)? | 'finally' COLON suite - ) + )? ; with_stmt: 'with' test (with_var)? COLON suite This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |