MCPcopy Create free account
hub / github.com/OpenDDS/OpenDDS / path

Method path

tools/scripts/massif-diff.py:128–135  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

126 return self.orig_level == 2
127
128 def path(self):
129 if self.is_root():
130 return (None,)
131 elif self.is_section():
132 return (None, None)
133 elif self.is_heap_node():
134 return (None, None, None)
135 return self.parent.path() + (self.text,)
136
137 def print(self, file, level=0):
138 if level == 0: # Root

Callers 2

diffMethod · 0.95
getResourceLabelMethod · 0.45

Calls 3

is_rootMethod · 0.95
is_sectionMethod · 0.95
is_heap_nodeMethod · 0.95

Tested by

no test coverage detected