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