[Pydev-cvs] org.python.pydev.debug/src_console/org/python/pydev/debug/newconsole/env IProcessFacto
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2008-05-21 01:38:08
|
Update of /cvsroot/pydev/org.python.pydev.debug/src_console/org/python/pydev/debug/newconsole/env In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4564/src_console/org/python/pydev/debug/newconsole/env Modified Files: IProcessFactory.java Log Message: - No longer using Runtime.exec(String), only Runtime.exec(String[]) - Updating the markers in a better (faster) way Index: IProcessFactory.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.debug/src_console/org/python/pydev/debug/newconsole/env/IProcessFactory.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** IProcessFactory.java 4 Apr 2008 02:54:42 -0000 1.5 --- IProcessFactory.java 21 May 2008 01:38:14 -0000 1.6 *************** *** 93,97 **** File scriptWithinPySrc = PydevPlugin.getScriptWithinPySrc("pydevconsole.py"); ! String commandLine; if(interpreterManager.isPython()){ commandLine = SimplePythonRunner.makeExecutableCommandStr(scriptWithinPySrc.getAbsolutePath(), --- 93,97 ---- File scriptWithinPySrc = PydevPlugin.getScriptWithinPySrc("pydevconsole.py"); ! String[] commandLine; if(interpreterManager.isPython()){ commandLine = SimplePythonRunner.makeExecutableCommandStr(scriptWithinPySrc.getAbsolutePath(), |