Skip to content

Tag: debugging

How to debug backwards in PyCharm?

We all know F9 goes forward in debug mode. But how can we go backward after going a couple steps forward with F9 or is that even possible? Answer how can we go backward after going a couple steps forward with F9 or is that possible? It isn’t possible, you can’t “go back” during debuggi…

Sudoku backtracking solver bug

Ok, I’ve been scratching my head over this for a few hours now.. My goal was to code a sudoku solver that uses the backtracking method and to show the progress of the algorithm using pygame. For this I have to keep track of the events, I did it by appending them to a list named registre as is shown

Prevent Kivy leaving debug messages

I have a simple a Kivy interface that also uses the terminal. Example code: The problem is that whenever I start the script I get this: I have found that this is Kivy’s automatic debugging messages. How do I prevent them (or at least hide so that I can use the terminal)? Answer As shown in the docs, you…