[Pydev-cvs] org.python.pydev/src_dltk_console/org/python/pydev/dltk/console IScriptConsoleCommunic
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2008-09-28 12:46:29
|
Update of /cvsroot/pydev/org.python.pydev/src_dltk_console/org/python/pydev/dltk/console In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4313/src_dltk_console/org/python/pydev/dltk/console Modified Files: IScriptConsoleCommunication.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: IScriptConsoleCommunication.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/src_dltk_console/org/python/pydev/dltk/console/IScriptConsoleCommunication.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** IScriptConsoleCommunication.java 20 Mar 2008 16:56:07 -0000 1.3 --- IScriptConsoleCommunication.java 28 Sep 2008 12:45:46 -0000 1.4 *************** *** 19,29 **** public interface IScriptConsoleCommunication { ! /** ! * Executes a given command in the interpreter (push a line) ! * ! * @param command the command to be executed ! * @return the response from the interpreter (contains the stdout, stderr, etc). ! * @throws Exception ! */ InterpreterResponse execInterpreter(String command) throws Exception; --- 19,29 ---- public interface IScriptConsoleCommunication { ! /** ! * Executes a given command in the interpreter (push a line) ! * ! * @param command the command to be executed ! * @return the response from the interpreter (contains the stdout, stderr, etc). ! * @throws Exception ! */ InterpreterResponse execInterpreter(String command) throws Exception; |