(self, arg)
| 1271 | # Pdb meta commands, only intended to be used internally by pdb |
| 1272 | |
| 1273 | def _pdbcmd_print_frame_status(self, arg): |
| 1274 | self.print_stack_trace(0) |
| 1275 | self._validate_file_mtime() |
| 1276 | self._show_display() |
| 1277 | |
| 1278 | def _pdbcmd_silence_frame_status(self, arg): |
| 1279 | if self.cmdqueue and self.cmdqueue[-1] == '_pdbcmd_print_frame_status': |
nothing calls this directly
no test coverage detected