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

Method do_clear

Lib/bdb.py:473–478  ·  view source on GitHub ↗

Remove temporary breakpoint. Must implement in derived classes or get NotImplementedError.

(self, arg)

Source from the content-addressed store, hash-verified

471 return False
472
473 def do_clear(self, arg):
474 """Remove temporary breakpoint.
475
476 Must implement in derived classes or get NotImplementedError.
477 """
478 raise NotImplementedError("subclass of bdb must implement do_clear()")
479
480 def break_anywhere(self, frame):
481 """Return True if there is any breakpoint in that frame

Callers 1

break_hereMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected