MCPcopy Create free account
hub / github.com/RustPython/RustPython / do_where

Method do_where

Lib/pdb.py:926–932  ·  view source on GitHub ↗

w(here) Print a stack trace, with the most recent frame at the bottom. An arrow indicates the "current frame", which determines the context of most commands. 'bt' is an alias for this command.

(self, arg)

Source from the content-addressed store, hash-verified

924 complete_cl = _complete_location
925
926 def do_where(self, arg):
927 """w(here)
928 Print a stack trace, with the most recent frame at the bottom.
929 An arrow indicates the "current frame", which determines the
930 context of most commands. 'bt' is an alias for this command.
931 """
932 self.print_stack_trace()
933 do_w = do_where
934 do_bt = do_where
935

Callers

nothing calls this directly

Calls 1

print_stack_traceMethod · 0.95

Tested by

no test coverage detected