(self, key, val)
| 398 | |
| 399 | class Node(object): |
| 400 | def __init__(self, key, val): |
| 401 | self.key = key |
| 402 | self.val = val |
| 403 | self.left = None |
| 404 | self.right = None |
| 405 | |
| 406 | def __gt__(self, other): |
| 407 | """Greater than""" |
nothing calls this directly
no outgoing calls
no test coverage detected