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

Method reset

Lib/bdb.py:244–249  ·  view source on GitHub ↗

Set values of attributes as ready to start debugging.

(self)

Source from the content-addressed store, hash-verified

242 sys.settrace(None)
243
244 def reset(self):
245 """Set values of attributes as ready to start debugging."""
246 import linecache
247 linecache.checkcache()
248 self.botframe = None
249 self._set_stopinfo(None, None)
250
251 @contextmanager
252 def set_enterframe(self, frame):

Callers 4

set_traceMethod · 0.95
runMethod · 0.95
runevalMethod · 0.95
runcallMethod · 0.95

Calls 1

_set_stopinfoMethod · 0.95

Tested by

no test coverage detected