Skip to content Skip to sidebar Skip to footer
Showing posts with the label Debugging

Pythons Console Module Has Made It Impossible To Type The Tab Key

I started using it on one of my programs a while back. Ever since, whenever I type the tab key on a… Read more Pythons Console Module Has Made It Impossible To Type The Tab Key

How To Patch The Python 3 Breakpoint() Builtin?

I wrote a decorator that halts my program with breakpoint() if a critical error happens. def the_br… Read more How To Patch The Python 3 Breakpoint() Builtin?

Sqlite Python Sqlite3.operationalerror: Database Is Locked

I have written the following code, which is showing the sqlite3.OperationalError: database is locke… Read more Sqlite Python Sqlite3.operationalerror: Database Is Locked

How To Alter This Code To Allow Appending To The List?

I have an issue appending or in fact printing anything after this block of code: reversedPriv = [52… Read more How To Alter This Code To Allow Appending To The List?

Flask Interactive Debugger Broken

I'm trying to figure out why the Flask interactive debugger isn't working. My template appl… Read more Flask Interactive Debugger Broken

Is There A Free Python Debugger That Has Watchpoints?

pdb and winpdb both seem to be missing this essential (to me) feature. I saw something suggesting … Read more Is There A Free Python Debugger That Has Watchpoints?