5 Jul
2010
5 Jul
'10
4:09 a.m.
Hi Robin, On Mon, Jul 5, 2010 at 5:24 PM, Robin <robince@gmail.com> 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