Hi Robin, On Mon, Jul 5, 2010 at 5:24 PM, Robin <[email protected]> wrote: > Hi, > > I am having some problems with win64 with all my tests failing.
Short of saying what those failures are, we can't help you, > > I installed amd64 Python from Python.org and numpy and scipy from > http://www.lfd.uci.edu/~gohlke/pythonlibs/ > > I noticed that on windows sys.maxint is the 32bit value (2147483647 This is not surprising: sys.maxint gives you the max value of a long, which is 32 bits even on 64 bits on windows. David _______________________________________________ NumPy-Discussion mailing list [email protected] http://mail.scipy.org/mailman/listinfo/numpy-discussion
