Is this the right place to put a request for the pdb debugger?
I have Python 3.11.9 on Windows 10 and 11, and use the PDB debugger all the time. Currently in the debugger, the “c” command continues only to a previously set breakpoint. I would like the option to do “c 135” to set a one-time breakpoint at line 135, continue execution until line 135, just like Perl has.
Can this be done?
Or is there another Python debugger that can do “c LINENUM”? I normally debug Python in Windows Terminal.
until looks buggy. If I start a program, and without executing any lines, and do until 835, and line 835 is several executable lines inside a function updskuoldfmt, it does not take me to line 835, it takes me to the line that defines updskuoldfmt.
I guess that’s why I don’t use until.
After some other tests, until only seems to work if you are inside a function, to go to a line within that function.