timestamp: Remove datetime_to_precise_timestamp for datetime.timestamp.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2020-07-31 18:20:55 -07:00
committed by Tim Abbott
parent 6ec808b8df
commit 159641bab8
3 changed files with 2 additions and 15 deletions

View File

@@ -1,6 +1,5 @@
import calendar
import datetime
import time
class TimezoneNotUTCException(Exception):
@@ -41,7 +40,3 @@ def timestamp_to_datetime(timestamp: float) -> datetime.datetime:
def datetime_to_timestamp(dt: datetime.datetime) -> int:
verify_UTC(dt)
return calendar.timegm(dt.timetuple())
def datetime_to_precise_timestamp(dt: datetime.datetime) -> float:
verify_UTC(dt)
return time.mktime(dt.timetuple()) + dt.microsecond/1000000