(self, line)
| 715 | print("Without argument, reload the current file.", file=self.stream) |
| 716 | |
| 717 | def do_reverse(self, line): |
| 718 | if self.stats: |
| 719 | self.stats.reverse_order() |
| 720 | else: |
| 721 | print("No statistics object is loaded.", file=self.stream) |
| 722 | return 0 |
| 723 | def help_reverse(self): |
| 724 | print("Reverse the sort order of the profiling report.", file=self.stream) |
| 725 |
nothing calls this directly
no test coverage detected