From: <fwi...@us...> - 2008-09-02 14:43:53
|
Revision: 5282 http://jython.svn.sourceforge.net/jython/?rev=5282&view=rev Author: fwierzbicki Date: 2008-09-02 14:43:50 +0000 (Tue, 02 Sep 2008) Log Message: ----------- accidentally commented out call to dump() which is turned off by default anyway. Modified Paths: -------------- trunk/jython/src/org/python/compiler/ScopesCompiler.java Modified: trunk/jython/src/org/python/compiler/ScopesCompiler.java =================================================================== --- trunk/jython/src/org/python/compiler/ScopesCompiler.java 2008-09-02 14:41:10 UTC (rev 5281) +++ trunk/jython/src/org/python/compiler/ScopesCompiler.java 2008-09-02 14:43:50 UTC (rev 5282) @@ -53,7 +53,7 @@ referenceable = ((ScopeInfo)scopes.get(i)); } cur.cook(referenceable, dist, code_compiler); - //cur.dump(); // debug + cur.dump(); // debug cur = up; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |