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
Describe the bug
When outputting positive numbers in scientific notation with a long mantissa and negative exponent, the leading digit of the number is incorrectly replaced with a minus sign.
For example:
The positive number 1.11111111e-5 is incorrectly formatted as -.111e-05. This can be misleading because while the latter is a valid float representation in Python, it represents a completely different (and negative) value.