You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following the official tutorial Python API and running dateutils.hours("2019-6-3 20:1:12", "2020-5-3 13:13:13") will give an answer of 8009, different from 8034 given by the tutorial.
The text was updated successfully, but these errors were encountered:
delta_days == 0 means less than 24 hours. To check if they are the same day, something like start.day == end.day should be used instead. Similar mistake occurs when delta_days not equals to 0.
Since dateutils is implimented using datetime, this part can be improved:
OK, I think the datediff() (not only the hours()) function needs more check. Using more timedelta.days and timedelta.seconds could help making the code more clear to avoid bugs.
Following the official tutorial Python API and running
dateutils.hours("2019-6-3 20:1:12", "2020-5-3 13:13:13")
will give an answer of8009
, different from8034
given by the tutorial.The text was updated successfully, but these errors were encountered: