(self, *amount)
| 437 | return self |
| 438 | |
| 439 | def print_callees(self, *amount): |
| 440 | width, list = self.get_print_list(amount) |
| 441 | if list: |
| 442 | self.calc_callees() |
| 443 | |
| 444 | self.print_call_heading(width, "called...") |
| 445 | for func in list: |
| 446 | if func in self.all_callees: |
| 447 | self.print_call_line(width, func, self.all_callees[func]) |
| 448 | else: |
| 449 | self.print_call_line(width, func, {}) |
| 450 | print(file=self.stream) |
| 451 | print(file=self.stream) |
| 452 | return self |
| 453 | |
| 454 | def print_callers(self, *amount): |
| 455 | width, list = self.get_print_list(amount) |
nothing calls this directly
no test coverage detected