MCPcopy Index your code
hub / github.com/python/cpython / print_callees

Method print_callees

Lib/pstats.py:439–452  ·  view source on GitHub ↗
(self, *amount)

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls 4

get_print_listMethod · 0.95
calc_calleesMethod · 0.95
print_call_headingMethod · 0.95
print_call_lineMethod · 0.95

Tested by

no test coverage detected