gadgeteer.co.za
Watchpoints is a simple but powerful tool to help you with monitoring variables while debugging Python
When debugging code, you're often faced with figuring out when a variable changes. Without any advanced tools, you have the option of using print statements to announce the variables when you expect them to change. However, this is a very ineffective way because the variables could change in many places, and constantly printing them to...