How do you add breakpoints to a Python program in IDLE?

后端 未结 4 1159
后悔当初
后悔当初 2020-12-05 22:38

I solved this already, I\'m just posting it here because I couldn\'t figure it out with google, or by reading the docs. I only found it by accident.

To add a breakpo

相关标签:
4条回答
  • 2020-12-05 23:12

    Just adding to this answer (would've commented but for the rules that say I don't have enough reputation to do so): On the Mac you must control-click. The normal "right-click" at least for the trackpad does not work to bring up the contextual menu with the option to set a breakpoint.

    0 讨论(0)
  • 2020-12-05 23:16

    Completing the answer supplied by the OP: after setting the breakpoint - you must turn on IDLE's debug mode (using debug --> debugger). When you run the program, press "Go" in the debug window that opens up and IDLE will stop at the breakpoint.

    0 讨论(0)
  • 2020-12-05 23:23

    There is an open Python issue about the lack of documentation for IDLE breakpoints. Contributions welcome!

    Update: The on-line documentation and the IDLE help files (for 2.7.4, 3.2.4, and 3.3.0) have been updated, with Nick's help.

    0 讨论(0)
  • 2020-12-05 23:30

    You can set breakpoint before it is run.

    1. Set the breakpoint by right clicking on the relevant line of your program
    2. On your python shell, look for Debug - [Debug On] will be shown in your IDLE Python shell
    3. Go back to your program and press F5(hotkey) to run the program, it will stop in the relevant break line(s)
    4. If you want to look at some global variables or line of codes, you can check the box in the debugger
    0 讨论(0)
提交回复
热议问题