tbreak [ ([filename:]lineno | function) [, condition] ] Same arguments as break, but sets a temporary breakpoint: it is automatically deleted when first hit.
(self, arg)
| 768 | complete_b = _complete_location |
| 769 | |
| 770 | def do_tbreak(self, arg): |
| 771 | """tbreak [ ([filename:]lineno | function) [, condition] ] |
| 772 | Same arguments as break, but sets a temporary breakpoint: it |
| 773 | is automatically deleted when first hit. |
| 774 | """ |
| 775 | self.do_break(arg, 1) |
| 776 | |
| 777 | complete_tbreak = _complete_location |
| 778 |