MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / print_callees

Method print_callees

tools/python-3.11.9-amd64/Lib/pstats.py:437–450  ·  view source on GitHub ↗
(self, *amount)

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls 5

get_print_listMethod · 0.95
calc_calleesMethod · 0.95
print_call_headingMethod · 0.95
print_call_lineMethod · 0.95
printFunction · 0.50

Tested by

no test coverage detected