From cf823f25fc95ad3e6292b99b93ca8c18a6ab010e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Fri, 15 Mar 2019 03:32:26 +0100 Subject: [PATCH] Datetime fix --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index c482014..802def8 100644 --- a/README.md +++ b/README.md @@ -497,8 +497,6 @@ import pytz = D/T/DT.fromisoformat('') # Object from ISO string.
= DT.strptime(, '') # Datetime from string, according to format. = D/DT.fromordinal() # D/DT from days since Christ. - = D/DT.fromtimestamp() # D/DT from seconds since Epoch in local time. - = DT.utcfromtimestamp() # Naive DT from seconds since Epoch in UTC time. = DT.fromtimestamp(, ) # Aware DT from seconds since Epoch in tz time. ``` * **On Unix systems Epoch is `'1970-01-01 00:00 UTC'`, `'1970-01-01 01:00 CET'`, ...**