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
Due to the limitations of IEEE754, we may lost precision when
converting string back to datetime objects, for example:
`float('0.511581`) * 1e6`, gives us `0.511580`, which is unexpected.
In order to address that issue, here `Decimal` objects are used instead
of `float`.
0 commit comments