(self)
| 503 | indent = " " |
| 504 | |
| 505 | def print_title(self): |
| 506 | print(' ncalls tottime percall cumtime percall', end=' ', file=self.stream) |
| 507 | print('filename:lineno(function)', file=self.stream) |
| 508 | |
| 509 | def print_line(self, func): # hack: should print percentages |
| 510 | cc, nc, tt, ct, callers = self.stats[func] |