Let's talk about debuggers!

William Ray Wing wrw at mac.com
Wed Oct 25 10:30:28 EDT 2017


> On Oct 25, 2017, at 9:07 AM, Thomas Jollans <tjol at tjol.eu> wrote:
> 
> 

[byte]

> What options are there for Python (that work)? What text editors (and
> IDEs) have a decent integrated debugger or debugging plugin?

I rather like WingIDE (the name is a coincidence).  It allows insertion/removal of break points while the code is running.  While execution is stopped, it allows direct inspection of the stack (no surprise), but in addition allows execution of python statements or program elements typed into an auxiliary window - including importing things like matplotlib and plotting the current state of data arrays.  Its editor is syntax-aware and highlights accidental syntax errors as they are typed.  Lots of other features, those just happen to be the ones I use most often.

Bill


More information about the Python-list mailing list