Re: [Pyobjc-dev] Debugging PyObjc Apps
Brought to you by:
ronaldoussoren
From: Martina O. <Ma...@Oe...> - 2003-02-02 15:53:43
|
Am Sonntag, 02.02.03 um 01:25 Uhr schrieb Just van Rossum: >> I haven't looked at pdb; does it do remote debugging? > > Not directly, but I think we can find a way so we can just run it > _inside_ the app process, and access it through TelnetInspect or > something similar. Hm, that might actually work out of the box... I it doesn't work - at least in my attempts the app froze completely. When PDB suspends the running app, the run loop is suspended, too, and so TelnetInspect can't perform any I/O for PDB, so that you don't have a chance to resume the program. PDB would need an I/O mechanism which doesn't depend on the run loop. ciao Martina |