Friday, March 07, 2008

Pydev 1.3.14

Pydev 1.3.14 is out!

It's mostly a bugfix release with some of niceties:

* In pydev extensions, configuring the remote debugger in a different machine is now easier: mostly setting the constant in pydevd_file_utils.py (in the remote machine being debugged -- see the comments on the file).

* In pydev, having a speed up from using psyco was really nice!

* The improvements in the outline view (by Laurent Dore) and having a more reliable Go to Next/Previous method (Ctrl+Shift+Up/Down) are also pretty nice :)

2 comments:

Anonymous said...

Great thanks! :)

Btw, is it possible to turn it off for some runs? I have a function which sips a lot of data from file just to initialize and the debug session crushes on it with the "psyco: out of memory". It would be nice to have it optional.

Fabio Zadrozny said...

You can disable it manually by setting the constant USE_PSYCO_OPTIMIZATION in X:\org.python.pydev.debug\pysrc\pydevd_constants.py to False (or not having psyco installed)

Cheers,

Fabio