Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to stop at in IDLE breakpoint

Running Python 3.3 on Win64, I found out how to add breakpoints in IDLE 3.3 here, but when I run my module via Run > Run Module (F5), it blows right through my breakpoints. What am I missing?

like image 809
buttonsrtoys Avatar asked Oct 04 '22 00:10

buttonsrtoys


1 Answers

The debugger checkbox

You need to enable Debugging (check the Debug→Debugging checkbox from the Shell window). When you run the program, a dialog will show allowing you to control the execution code. If you select Go, it will keep running your program until a breakpoint is reached.

like image 77
Ramchandra Apte Avatar answered Oct 07 '22 19:10

Ramchandra Apte