(self, line)
| 748 | self.generic_help() |
| 749 | |
| 750 | def do_strip(self, line): |
| 751 | if self.stats: |
| 752 | self.stats.strip_dirs() |
| 753 | else: |
| 754 | print("No statistics object is loaded.", file=self.stream) |
| 755 | def help_strip(self): |
| 756 | print("Strip leading path information from filenames in the report.", file=self.stream) |
| 757 |
nothing calls this directly
no test coverage detected