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

Method print_stack_entry

Lib/pdb.py:1461–1468  ·  view source on GitHub ↗
(self, frame_lineno, prompt_prefix=line_prefix)

Source from the content-addressed store, hash-verified

1459 pass
1460
1461 def print_stack_entry(self, frame_lineno, prompt_prefix=line_prefix):
1462 frame, lineno = frame_lineno
1463 if frame is self.curframe:
1464 prefix = '> '
1465 else:
1466 prefix = ' '
1467 self.message(prefix +
1468 self.format_stack_entry(frame_lineno, prompt_prefix))
1469
1470 # Provide help
1471

Callers 5

bp_commandsMethod · 0.95
interactionMethod · 0.95
_select_frameMethod · 0.95
do_jumpMethod · 0.95
print_stack_traceMethod · 0.95

Calls 2

messageMethod · 0.95
format_stack_entryMethod · 0.80

Tested by

no test coverage detected