(self, value=0)
| 274 | """ |
| 275 | |
| 276 | def __init__(self, value=0): |
| 277 | if isinstance(value, str): |
| 278 | self.value = value |
| 279 | else: |
| 280 | self.value = _strftime(value) |
| 281 | |
| 282 | def make_comparable(self, other): |
| 283 | if isinstance(other, DateTime): |
nothing calls this directly
no test coverage detected