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
Personal note: I hold no interest in Python 2.7 so I'm afraid I'm not volunteering to fix this. I strongly suggest canning support for Python < 3.5 ASAP.
The text was updated successfully, but these errors were encountered:
There are precision issues in python 2.7:
In Python 3:
This is caused by incorrectly using str(float) instead of repr(float) across the codebase. In Python 2.7, the two are not the same:
I noticed this issue after my eye fell on one of these cases:
pint/pint/registry.py
Lines 751 to 754 in c777e3c
Personal note: I hold no interest in Python 2.7 so I'm afraid I'm not volunteering to fix this. I strongly suggest canning support for Python < 3.5 ASAP.
The text was updated successfully, but these errors were encountered: