(self, line)
| 808 | self.generic_help() |
| 809 | |
| 810 | def do_strip(self, line): |
| 811 | if self.stats: |
| 812 | self.stats.strip_dirs() |
| 813 | else: |
| 814 | print("No statistics object is loaded.", file=self.stream) |
| 815 | def help_strip(self): |
| 816 | print("Strip leading path information from filenames in the report.", file=self.stream) |
| 817 |
nothing calls this directly
no test coverage detected