(self, line)
| 775 | print("Without argument, reload the current file.", file=self.stream) |
| 776 | |
| 777 | def do_reverse(self, line): |
| 778 | if self.stats: |
| 779 | self.stats.reverse_order() |
| 780 | else: |
| 781 | print("No statistics object is loaded.", file=self.stream) |
| 782 | return 0 |
| 783 | def help_reverse(self): |
| 784 | print("Reverse the sort order of the profiling report.", file=self.stream) |
| 785 |
nothing calls this directly
no test coverage detected