(self, file)
| 400 | pstats.Stats(self).strip_dirs().sort_stats(*sort).print_stats() |
| 401 | |
| 402 | def dump_stats(self, file): |
| 403 | with open(file, 'wb') as f: |
| 404 | self.create_stats() |
| 405 | marshal.dump(self.stats, f) |
| 406 | |
| 407 | def create_stats(self): |
| 408 | self.simulate_cmd_complete() |
no test coverage detected