From: <fwi...@us...> - 2008-08-27 02:47:59
|
Revision: 5256 http://jython.svn.sourceforge.net/jython/?rev=5256&view=rev Author: fwierzbicki Date: 2008-08-27 02:47:56 +0000 (Wed, 27 Aug 2008) Log Message: ----------- whitespace Modified Paths: -------------- branches/nowalker/grammar/Python.g Modified: branches/nowalker/grammar/Python.g =================================================================== --- branches/nowalker/grammar/Python.g 2008-08-27 02:38:35 UTC (rev 5255) +++ branches/nowalker/grammar/Python.g 2008-08-27 02:47:56 UTC (rev 5256) @@ -358,15 +358,16 @@ $decorator.tree = $etype; } : AT dotted_attr - ( LPAREN (arglist - { - $etype = actions.makeCall($LPAREN, $dotted_attr.etype, $arglist.args, - $arglist.keywords, $arglist.starargs, $arglist.kwargs); - } - |{ - $etype = actions.makeCall($LPAREN, $dotted_attr.etype); - } - ) + ( LPAREN + ( arglist + { + $etype = actions.makeCall($LPAREN, $dotted_attr.etype, $arglist.args, $arglist.keywords, + $arglist.starargs, $arglist.kwargs); + } + | { + $etype = actions.makeCall($LPAREN, $dotted_attr.etype); + } + ) RPAREN | { $etype = $dotted_attr.etype; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |