[Pydev-cvs] org.python.pydev.debug/src/org/python/pydev/debug/ui/launching PythonRunner.java,1.3,1.4
Brought to you by:
fabioz
From: Aleksandar T. <at...@us...> - 2004-04-27 19:13:07
|
Update of /cvsroot/pydev/org.python.pydev.debug/src/org/python/pydev/debug/ui/launching In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10447/src/org/python/pydev/debug/ui/launching Modified Files: PythonRunner.java Log Message: Stepping works. Index: PythonRunner.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.debug/src/org/python/pydev/debug/ui/launching/PythonRunner.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PythonRunner.java 22 Apr 2004 10:56:17 -0000 1.3 --- PythonRunner.java 27 Apr 2004 19:12:58 -0000 1.4 *************** *** 22,25 **** --- 22,26 ---- import org.python.pydev.debug.core.PydevDebugPlugin; import org.python.pydev.debug.model.PyDebugTarget; + import org.python.pydev.debug.model.PySourceLocator; import org.python.pydev.debug.model.RemoteDebugger; *************** *** 76,79 **** --- 77,82 ---- PyDebugTarget t = new PyDebugTarget(launch, process, config.file, debugger); + launch.setSourceLocator(new PySourceLocator()); + debugger.startTransmission(); // this starts reading/writing from sockets } |