From: <th...@us...> - 2009-07-21 20:55:58
|
Revision: 6555 http://jython.svn.sourceforge.net/jython/?rev=6555&view=rev Author: thobes Date: 2009-07-21 20:55:55 +0000 (Tue, 21 Jul 2009) Log Message: ----------- Fix for issue 1407. Modified Paths: -------------- trunk/jython/src/org/python/compiler/CodeCompiler.java Modified: trunk/jython/src/org/python/compiler/CodeCompiler.java =================================================================== --- trunk/jython/src/org/python/compiler/CodeCompiler.java 2009-07-21 02:48:53 UTC (rev 6554) +++ trunk/jython/src/org/python/compiler/CodeCompiler.java 2009-07-21 20:55:55 UTC (rev 6555) @@ -657,7 +657,7 @@ for (String signature : stack) { code.aload(array); // Stack: |- ... array - code.iconst(i); + code.iconst(i--); code.aaload(); // Stack: |- ... value code.checkcast(signature); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |