Construct a UTC datetime from time.time().
(cls)
| 1802 | |
| 1803 | @classmethod |
| 1804 | def utcnow(cls): |
| 1805 | "Construct a UTC datetime from time.time()." |
| 1806 | t = _time.time() |
| 1807 | return cls.utcfromtimestamp(t) |
| 1808 | |
| 1809 | @classmethod |
| 1810 | def combine(cls, date, time, tzinfo=True): |
no test coverage detected