Handler for call events. Adds (filename, modulename, funcname) to the self._calledfuncs dict.
(self, frame, why, arg)
| 520 | self._callers[(parent_func, this_func)] = 1 |
| 521 | |
| 522 | def globaltrace_countfuncs(self, frame, why, arg): |
| 523 | """Handler for call events. |
| 524 | |
| 525 | Adds (filename, modulename, funcname) to the self._calledfuncs dict. |
| 526 | """ |
| 527 | if why == 'call': |
| 528 | this_func = self.file_module_function_of(frame) |
| 529 | self._calledfuncs[this_func] = 1 |
| 530 | |
| 531 | def globaltrace_lt(self, frame, why, arg): |
| 532 | """Handler for call events. |
nothing calls this directly
no test coverage detected