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


-------------------------------------------------------
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
_______________________________________________
Pydev-code mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/pydev-code

Reply via email to