(self, sort=-1)
| 39 | # This subclass only adds convenient and backward-compatible methods. |
| 40 | |
| 41 | def print_stats(self, sort=-1): |
| 42 | import pstats |
| 43 | pstats.Stats(self).strip_dirs().sort_stats(sort).print_stats() |
| 44 | |
| 45 | def dump_stats(self, file): |
| 46 | import marshal |
nothing calls this directly
no test coverage detected