To see the list of all active breakpoints, use the SHOW BREAK command in one of two forms:
● Pdb > SHOW BREAK
● Pdb > SHOW BREAKbreakpoint_list
The first form allows you to see the list of all active breakpoints. The Debugger displays each active breakpoint, the corresponding
trigger_expression
, and the DO clause, as in the following example:Breakpoint LABEL_1 on event : TRUE(ACTIVE(A))
Breakpoint NEW on event: E1 or E2
Breakpoint LABEL_3 on event: [ACTIVE(A)]
Breakpoint BP_! on event: E1
reaction: SHOW COND; SHOW DATAThe second form displays only selected breakpoints. For example, in response to:
the Debugger displays the following list:
Breakpoint LABEL_1 on event: TRUE(ACTIVE(A))
Breakpoint LABEL_3 on event: [ACTIVE(A)]
Breakpoint BP_1 on event: E1
reaction: SHOW COND; SHOW DATA