From: Finn B. <bc...@us...> - 2001-02-04 20:02:36
|
Update of /cvsroot/jython/jython/org/python/compiler In directory usw-pr-cvs1:/tmp/cvs-serv24304 Modified Files: LocalsCompiler.java Log Message: for_stmt(): Fix bug #129364. Index: LocalsCompiler.java =================================================================== RCS file: /cvsroot/jython/jython/org/python/compiler/LocalsCompiler.java,v retrieving revision 2.6 retrieving revision 2.7 diff -C2 -r2.6 -r2.7 *** LocalsCompiler.java 2000/12/18 21:57:37 2.6 --- LocalsCompiler.java 2001/02/04 14:56:29 2.7 *************** *** 206,209 **** --- 206,212 ---- public Object for_stmt(SimpleNode node) throws Exception { + if (mode == SET) + super.for_stmt(node); + // The for_stmt node is handled in checkForStmt return null; |