MCPcopy Create free account
hub / github.com/ActiveState/code / Call

Class Call

recipes/Python/578138_gprof2dotpy/recipe-578138.py:163–173  ·  view source on GitHub ↗

A call between functions. There should be at most one call object for every pair of functions.

Source from the content-addressed store, hash-verified

161
162
163class Call(Object):
164 """A call between functions.
165
166 There should be at most one call object for every pair of functions.
167 """
168
169 def __init__(self, callee_id):
170 Object.__init__(self)
171 self.callee_id = callee_id
172 self.ratio = None
173 self.weight = None
174
175
176class Function(Object):

Callers 11

get_callMethod · 0.85
parseMethod · 0.85
parse_cost_lineMethod · 0.85
parse_eventMethod · 0.85
parseMethod · 0.85
build_profileMethod · 0.85
parseMethod · 0.85
parse_rowMethod · 0.85
parse_callstacksMethod · 0.85
build_callMethod · 0.85
parseMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected