Compare function between 2 tuple.
| 26 | |
| 27 | |
| 28 | class CmpTuple: |
| 29 | """Compare function between 2 tuple.""" |
| 30 | |
| 31 | def __call__(self, x, y): |
| 32 | return cmp(x[0], y[0]) |
| 33 | |
| 34 | |
| 35 | class CmpNode: |
no outgoing calls
no test coverage detected
searching dependent graphs…