(self, other)
| 322 | return s >= o |
| 323 | |
| 324 | def __eq__(self, other): |
| 325 | s, o = self.make_comparable(other) |
| 326 | if o is NotImplemented: |
| 327 | return NotImplemented |
| 328 | return s == o |
| 329 | |
| 330 | def timetuple(self): |
| 331 | return time.strptime(self.value, "%Y%m%dT%H:%M:%S") |
nothing calls this directly
no test coverage detected