(self, other)
| 347 | class CmpErr: |
| 348 | "Dummy element that always raises an error during comparison" |
| 349 | def __lt__(self, other): |
| 350 | raise ZeroDivisionError |
| 351 | __gt__ = __lt__ |
| 352 | __le__ = __lt__ |
| 353 | __ge__ = __lt__ |
no outgoing calls
no test coverage detected