From: <fwi...@us...> - 2009-05-27 16:12:41
|
Revision: 6397 http://jython.svn.sourceforge.net/jython/?rev=6397&view=rev Author: fwierzbicki Date: 2009-05-27 16:12:33 +0000 (Wed, 27 May 2009) Log Message: ----------- Fix for http://bugs.jython.org/issue1354: core language failures in interactive interpreter PythonPartial was not allowing for multiple dedents on incomplete input in interactive mode. Modified Paths: -------------- trunk/jython/NEWS trunk/jython/grammar/PythonPartial.g Modified: trunk/jython/NEWS =================================================================== --- trunk/jython/NEWS 2009-05-27 14:38:04 UTC (rev 6396) +++ trunk/jython/NEWS 2009-05-27 16:12:33 UTC (rev 6397) @@ -2,6 +2,7 @@ Jython 2.5.0 Bugs fixed + - [ 1354 ] core language failures in interactive interpreter - [ 1358 ] Simple pogram fails to parse in Jython 2.5rc3, but parses OK with CPython - [ 1357 ] no sys.executable when script runner is a relative link Modified: trunk/jython/grammar/PythonPartial.g =================================================================== --- trunk/jython/grammar/PythonPartial.g 2009-05-27 14:38:04 UTC (rev 6396) +++ trunk/jython/grammar/PythonPartial.g 2009-05-27 16:12:33 UTC (rev 6397) @@ -300,7 +300,7 @@ suite : simple_stmt | NEWLINE (EOF - |DEDENT EOF + | (DEDENT)+ EOF |INDENT (stmt)+ (DEDENT |EOF ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |