(self, file)
| 43 | pstats.Stats(self).strip_dirs().sort_stats(sort).print_stats() |
| 44 | |
| 45 | def dump_stats(self, file): |
| 46 | import marshal |
| 47 | with open(file, 'wb') as f: |
| 48 | self.create_stats() |
| 49 | marshal.dump(self.stats, f) |
| 50 | |
| 51 | def create_stats(self): |
| 52 | self.disable() |
nothing calls this directly
no test coverage detected