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)
| 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 |
nothing calls this directly
no test coverage detected