pruning off the subtree
(self)
| 78 | return size |
| 79 | |
| 80 | def prune(self): |
| 81 | ''' |
| 82 | pruning off the subtree |
| 83 | ''' |
| 84 | self.pruned = True |
| 85 | for child in self.children: |
| 86 | child.prune() |
| 87 | |
| 88 | def print(self,process_id = 0): |
| 89 | if process_id != 0: |
nothing calls this directly
no outgoing calls
no test coverage detected