コードは次のページからのものです: https ://github.com/reddit/reddit/blob/master/r2/r2/lib/db/_sorts.pyx
コードスニペットは次のとおりです。
cpdef double epoch_seconds(date):
"""Returns the number of seconds from the epoch to date. Should
match the number returned by the equivalent function in
postgres."""
td = date - epoch
return td.days * 86400 + td.seconds + (float(td.microseconds) / 1000000)
と同じtd.days * 86400
ようにすべきだと思いますが、なぜ彼らは単にtd.secondsを3倍にしないのだろうかと思っていました。td.seconds
(float(td.microseconds) / 1000000)