Re: [Pydev-code] PyDev 0.9.8.2 released
Brought to you by:
fabioz
From: Aleks T. <a...@to...> - 2005-09-27 23:03:57
|
Fabio Zadrozny wrote: > Hi All, > > PyDev - Python IDE (Python Development Enviroment for Eclipse) version > 0.9.8.2 has been released. > * .pyc is removed when the corresponding .py file is removed. > * Debugger has been changed so that it becomes faster (still not as > fast as I would like, but still... faster) -- looking for people with > expertise on this to help me, as I'm kind of lost on which should be the > 'recommended' way to speed it more. Not sure what are you doing with the debugger right now. The major cause of slowness used to be transfer of variables. This was particularly painful when a file imported many packages. Since everything in Python is global, we'd transfer 1000s of variables encoded as XML. This can be speeded up a lot by loading only "local" variables. Once the breakpoint is hit, use the editor model to figure out what the local variables are, and transfer only those values initially. Cheers, Aleks |