tbreak [ ([filename:]lineno | function) [, condition] ] Same arguments as break, but sets a temporary breakpoint: it is automatically deleted when first hit.
(self, arg)
| 711 | complete_b = _complete_location |
| 712 | |
| 713 | def do_tbreak(self, arg): |
| 714 | """tbreak [ ([filename:]lineno | function) [, condition] ] |
| 715 | Same arguments as break, but sets a temporary breakpoint: it |
| 716 | is automatically deleted when first hit. |
| 717 | """ |
| 718 | self.do_break(arg, 1) |
| 719 | |
| 720 | complete_tbreak = _complete_location |
| 721 |