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