tbreak [ ([filename:]lineno | function) [, condition] ] Same arguments as break, but sets a temporary breakpoint: it is automatically deleted when first hit.
(self, arg)
| 1483 | complete_b = _complete_location |
| 1484 | |
| 1485 | def do_tbreak(self, arg): |
| 1486 | """tbreak [ ([filename:]lineno | function) [, condition] ] |
| 1487 | |
| 1488 | Same arguments as break, but sets a temporary breakpoint: it |
| 1489 | is automatically deleted when first hit. |
| 1490 | """ |
| 1491 | self.do_break(arg, True) |
| 1492 | |
| 1493 | complete_tbreak = _complete_location |
| 1494 |