(self,data)
| 27 | |
| 28 | class my_node: |
| 29 | def __init__(self,data): |
| 30 | self.data = data |
| 31 | self.left = None |
| 32 | self.right = None |
| 33 | self.height = 1 |
| 34 | def getdata(self): |
| 35 | return self.data |
| 36 | def getleft(self): |
nothing calls this directly
no outgoing calls
no test coverage detected