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
The reason seems to be that python.org 2.5 binary is linked with a C runtime that has a broken implementation of ldexp (oh joy), and this is also what Numpy gets. This is easily tested by inserting printf("\n>>>%g<<<<\n", ldexp(2.0, 2147483647)); in e.g. multiarraymodule.c:initmultiarray.
We cannot fix this, as it's not our bug. The test should just be marked as KNOWNFAIL on Python < 2.5 on Windows. Marked so in 3747ab5 and c6504f5
Original ticket http://projects.scipy.org/numpy/ticket/1641 on 2010-10-19 by @pv, assigned to unknown.
On Python 2.5 + MinGW + Wine (and probably on a real Windows, too):
On Python 2.6 the above works correctly.
This occurs also on d24db3430a and is therefore independent of #2229.
The text was updated successfully, but these errors were encountered: