(self, value=0)
| 300 | """ |
| 301 | |
| 302 | def __init__(self, value=0): |
| 303 | if isinstance(value, str): |
| 304 | self.value = value |
| 305 | else: |
| 306 | self.value = _strftime(value) |
| 307 | |
| 308 | def make_comparable(self, other): |
| 309 | if isinstance(other, DateTime): |
nothing calls this directly
no test coverage detected