Re: Issue 1701 in sympy: ode.py: xpassing test

2009-11-10 Thread codesite-noreply
Updates: Cc: ondrej.certik Comment #1 on issue 1701 by asmeurer: ode.py: xpassing test http://code.google.com/p/sympy/issues/detail?id=1701 The test XPasses for me, too, though I am not sure what exact architecture my machine is running under at this point. Ondrej's buildbots are

Re: Issue 1701 in sympy: ode.py: xpassing test

2009-11-10 Thread codesite-noreply
Comment #2 on issue 1701 by Vinzent.Steinberg: ode.py: xpassing test http://code.google.com/p/sympy/issues/detail?id=1701 Run this to be sure: import sys from math import * log(sys.maxint, 2) 63.0 (The 64th bit is for the sign.) -- You received this message because you are listed in the

Re: Issue 1701 in sympy: ode.py: xpassing test

2009-11-10 Thread codesite-noreply
Comment #4 on issue 1701 by Vinzent.Steinberg: ode.py: xpassing test http://code.google.com/p/sympy/issues/detail?id=1701 My Python is being run as just slightly less than 32-bits. Floating-point arithmetic makes it possible. :) I don't think there's a difference between Intel and AMD, it's

Re: Issue 1701 in sympy: ode.py: xpassing test

2009-11-10 Thread codesite-noreply
Comment #5 on issue 1701 by asmeurer: ode.py: xpassing test http://code.google.com/p/sympy/issues/detail?id=1701 import sys sys.maxint 2147483647 2**31 2147483648L It's actually 1 less than 2**31, because 0 is positive. Which leads to another easier way to check, just type 2**31 and see if