Construct a date from time.time().
(cls)
| 962 | |
| 963 | @classmethod |
| 964 | def today(cls): |
| 965 | "Construct a date from time.time()." |
| 966 | t = _time.time() |
| 967 | return cls.fromtimestamp(t) |
| 968 | |
| 969 | @classmethod |
| 970 | def fromordinal(cls, n): |
no test coverage detected