From: <fwi...@us...> - 2008-07-26 01:55:06
|
Revision: 5002 http://jython.svn.sourceforge.net/jython/?rev=5002&view=rev Author: fwierzbicki Date: 2008-07-26 01:55:04 +0000 (Sat, 26 Jul 2008) Log Message: ----------- Removed stray System.outs. Modified Paths: -------------- branches/asm/src/org/python/core/PyClass.java branches/asm/src/org/python/core/PyString.java Modified: branches/asm/src/org/python/core/PyClass.java =================================================================== --- branches/asm/src/org/python/core/PyClass.java 2008-07-26 01:51:48 UTC (rev 5001) +++ branches/asm/src/org/python/core/PyClass.java 2008-07-26 01:55:04 UTC (rev 5002) @@ -162,14 +162,11 @@ for (java.util.Iterator iter = super__methods.entrySet().iterator(); iter .hasNext();) { java.util.Map.Entry entry = (java.util.Map.Entry) iter.next(); - // System.out.println(entry.getKey()); // debug entry.setValue(((java.util.ArrayList) entry.getValue()) .toArray(empty_methods)); } } - // System.out.println("proxyClasses: "+proxyClasses+", "+ - // proxyClasses[0]); if (dict.__finditem__("__doc__") == null) { dict.__setitem__("__doc__", Py.None); } @@ -186,7 +183,6 @@ protected void findModule(PyObject dict) { PyObject module = dict.__finditem__("__module__"); if (module == null || module == Py.None) { - // System.out.println("in PyClass getFrame: "+__name__.string); PyFrame f = Py.getFrame(); if (f != null) { PyObject nm = f.f_globals.__finditem__("__name__"); Modified: branches/asm/src/org/python/core/PyString.java =================================================================== --- branches/asm/src/org/python/core/PyString.java 2008-07-26 01:51:48 UTC (rev 5001) +++ branches/asm/src/org/python/core/PyString.java 2008-07-26 01:55:04 UTC (rev 5002) @@ -2739,7 +2739,6 @@ } c = pop(); if (c == '(') { - //System.out.println("( found"); if (dict == null) throw Py.TypeError("format requires a mapping"); int parens = 1; @@ -2753,7 +2752,6 @@ } String tmp = format.substring(keyStart, index-1); this.args = dict.__getitem__(new PyString(tmp)); - //System.out.println("args: "+args+", "+argIndex); } else { push(); } @@ -2789,7 +2787,6 @@ continue; } PyObject arg = getarg(); - //System.out.println("args: "+args+", "+argIndex+", "+arg); char fill = ' '; String string=null; negative = false; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |