(self, other)
| 2241 | return NotImplemented |
| 2242 | |
| 2243 | def __gt__(self, other): |
| 2244 | if isinstance(other, datetime): |
| 2245 | return self._cmp(other) > 0 |
| 2246 | else: |
| 2247 | return NotImplemented |
| 2248 | |
| 2249 | def _cmp(self, other, allow_mixed=False): |
| 2250 | assert isinstance(other, datetime) |
nothing calls this directly
no test coverage detected