(self, *amount)
| 452 | return self |
| 453 | |
| 454 | def print_callers(self, *amount): |
| 455 | width, list = self.get_print_list(amount) |
| 456 | if list: |
| 457 | self.print_call_heading(width, "was called by...") |
| 458 | for func in list: |
| 459 | cc, nc, tt, ct, callers = self.stats[func] |
| 460 | self.print_call_line(width, func, callers, "<-") |
| 461 | print(file=self.stream) |
| 462 | print(file=self.stream) |
| 463 | return self |
| 464 | |
| 465 | def print_call_heading(self, name_size, column_title): |
| 466 | print("Function ".ljust(name_size) + column_title, file=self.stream) |
nothing calls this directly
no test coverage detected