MCPcopy Index your code
hub / github.com/python/cpython / do_tbreak

Method do_tbreak

Lib/pdb.py:1485–1491  ·  view source on GitHub ↗

tbreak [ ([filename:]lineno | function) [, condition] ] Same arguments as break, but sets a temporary breakpoint: it is automatically deleted when first hit.

(self, arg)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

do_breakMethod · 0.95

Tested by

no test coverage detected