From 9c8e80c7921ba7883239a05a67619d4344b3e1ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sat, 25 Jan 2020 20:42:40 +0100 Subject: [PATCH] Datetime --- README.md | 2 +- index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1326b83..482829a 100644 --- a/README.md +++ b/README.md @@ -634,7 +634,7 @@ from dateutil.tz import UTC, tzlocal, gettz, resolve_imaginary = .isoformat(sep='T') # Also timespec='auto/hours/minutes/seconds'. = .strftime('') # Custom string representation. = .toordinal() # Days since Christ, ignoring time and tz. - = .timestamp() # Seconds since Epoch from DTn in local time. + = .timestamp() # Seconds since Epoch from DTn in local tz. = .timestamp() # Seconds since Epoch from DTa. ``` diff --git a/index.html b/index.html index b205614..39a737d 100644 --- a/index.html +++ b/index.html @@ -686,7 +686,7 @@ shuffle(<list>)

Decode

<str>    = <D/T/DT>.isoformat(sep='T')      # Also timespec='auto/hours/minutes/seconds'.
 <str>    = <D/T/DT>.strftime('<format>')    # Custom string representation.
 <int>    = <D/DT>.toordinal()               # Days since Christ, ignoring time and tz.
-<float>  = <DTn>.timestamp()                # Seconds since Epoch from DTn in local time.
+<float>  = <DTn>.timestamp()                # Seconds since Epoch from DTn in local tz.
 <float>  = <DTa>.timestamp()                # Seconds since Epoch from DTa.