(self)
| 20 | return self.parent and self.parent.rightChild == self |
| 21 | |
| 22 | def isRoot(self): |
| 23 | return not self.parent |
| 24 | |
| 25 | def isLeaf(self): |
| 26 | return not (self.rightChild or self.leftChild) |
nothing calls this directly
no outgoing calls
no test coverage detected