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

Method forget

Lib/pdb.py:506–513  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

504 self.forget()
505
506 def forget(self):
507 self.lineno = None
508 self.stack = []
509 self.curindex = 0
510 if self.curframe:
511 self.curframe.f_globals.pop('__pdb_convenience_variables', None)
512 self.curframe = None
513 self.tb_lineno.clear()
514
515 def setup(self, f, tb):
516 self.forget()

Callers 3

resetMethod · 0.95
setupMethod · 0.95
interactionMethod · 0.95

Calls 2

popMethod · 0.45
clearMethod · 0.45

Tested by

no test coverage detected