Ram Rachum <[email protected]> writes: > I'm working with PuDB and bdb and I'm noticing there is `stop_here` and > `break_here`. Lots of places in the docs talk about stopping and breaking. > What's the difference between these two?
stop_here and break_here are predicates. (More like "should_i_stop_here" and ...). stop_here asks whether you're in the scope of the debugger (below the start frame), break_here answers whether there's a breakpoint in the current frame. HTH, Andreas _______________________________________________ Pudb mailing list [email protected] https://lists.tiker.net/listinfo/pudb
