(self, prof, filename, sort)
| 76 | self._show(prof, filename, sort) |
| 77 | |
| 78 | def _show(self, prof, filename, sort): |
| 79 | if filename is not None: |
| 80 | prof.dump_stats(filename) |
| 81 | else: |
| 82 | prof.print_stats(sort) |
| 83 | |
| 84 | |
| 85 | #************************************************************************** |
no test coverage detected