Pudb – A full-screen, console-based Python debugger
pypi.python.org
Pudb – A full-screen, console-based Python debugger
1–10 of 30 posts
Re: Pudb – A full-screen, console-based Python debugger
#2I have recently tried PuDB, and, I have to say, it is pretty damn nice. Never again will I use pdb/ipdb for debugging, now I can actually debug like a human being!
Re: Pudb – A full-screen, console-based Python debugger
#3I have had some success using winpdb. it allows for graphical full screen debugging and it also allows for remotely debugging.
this allows me to set up the debugger in some code on my dev box and run winpdb on my own box.
Re: Pudb – A full-screen, console-based Python debugger
#4[deleted]
Re: Pudb – A full-screen, console-based Python debugger
#5Pudb depends on the "termios" module (POSIX style tty control), whose doc says it's only available under Unix.[1] Does anyone know if there's a way to make it run on Windows (native Windows command prompt, not Cygwin)?
Re: Pudb – A full-screen, console-based Python debugger
#6WHY is easy_install still used?
Re: Pudb – A full-screen, console-based Python debugger
#7Cant wait to try this out in my workflow, but I really wish this was available through PIP. PDB has served me well, but having some if this information intuitively shown will be incredibly helpful.
Re: Pudb – A full-screen, console-based Python debugger
#8Bugjar [1] is similarly inspired by Turbo Pascal/C, but with a Tkinter GUI.
Re: Pudb – A full-screen, console-based Python debugger
#9Pudb depends on the "termios" module (POSIX style tty control), whose doc says it's only available under Unix.[1] Does anyone know if there's a way to make it run on Windows (native Windows command prompt, not Cygwin)? [1] http://docs.python.org/2/library/termios.html
[deleted]
Re: Pudb – A full-screen, console-based Python debugger
#10Just tried this out, and I must say, this is really freakin' cool! Simple controls, intuitive layout. I don't feel like I'm fighting the debugger to get it do to what I want anymore.