MCPcopy Index your code
hub / github.com/RustPython/RustPython / do_tbreak

Method do_tbreak

Lib/pdb.py:713–718  ·  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

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

Callers

nothing calls this directly

Calls 1

do_breakMethod · 0.95

Tested by

no test coverage detected