[Pydev-cvs] org.python.pydev.core/src/org/python/pydev/core/structure FastStack.java, 1.4, 1.5
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2008-09-27 19:57:58
|
Update of /cvsroot/pydev/org.python.pydev.core/src/org/python/pydev/core/structure In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19948/src/org/python/pydev/core/structure Modified Files: FastStack.java Log Message: Synching to latest changes: Pydev <ul> <li><strong>Editor</strong>: Cursor settings no longer overridden</li> <li><strong>Code-completion</strong>: If __all__ is defined with runtime elements (and not only in a single assign statement), it's ignored for code-completion purposes</li> <li><strong>Debugger</strong>: Pythonpath the same in debug and regular modes (sys.path[0] is the same directory as the file run)</li> <li><strong>Debugger</strong>: Persist choices done in the debugger when files from the debugger are not found</li> <li><strong>Interpreter config</strong>: "email" automatically added to the "forced builtins"</li> <li><strong>Parser</strong>: Correctly recognizing absolute import with 3 or more levels</li> <li><strong>Syntax check</strong>: Option to do only on active editor</li> </ul> Also: tabs changed for spaces Index: FastStack.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.core/src/org/python/pydev/core/structure/FastStack.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** FastStack.java 31 Jul 2008 01:47:54 -0000 1.4 --- FastStack.java 27 Sep 2008 19:57:36 -0000 1.5 *************** *** 238,249 **** @Override public String toString() { ! FastStringBuffer buf = new FastStringBuffer("FastStack [\n", 25*this.size); ! for (E element: this) { ! buf.append(" "); ! buf.append(element.toString()); ! buf.append("\n"); ! } ! buf.append("]"); ! return buf.toString(); } --- 238,249 ---- @Override public String toString() { ! FastStringBuffer buf = new FastStringBuffer("FastStack [\n", 25*this.size); ! for (E element: this) { ! buf.append(" "); ! buf.append(element.toString()); ! buf.append("\n"); ! } ! buf.append("]"); ! return buf.toString(); } |