2009/11/30 Aaron S. Meurer <asmeu...@gmail.com>

> Where are you getting these examples?  This one still works the same for me
> in both:
>
> >>> import sys
> >>> import sympy
> >>> sys.maxint
> 9223372036854775807
> >>> x = sympy.Symbol('x')
> >>> r = sympy.solve(x**4 - 6*x**3 + 17*x**2 - 26*x + 20, x)
> >>> r
> [2 + I, 1 + I*3**(1/2), 2 - I, 1 - I*3**(1/2)]
>
> >>> import sys
> >>> import sympy
> >>> sys.maxint
> 2147483647
> >>> x = sympy.Symbol('x')
> >>> r = sympy.solve(x**4 - 6*x**3 + 17*x**2 - 26*x + 20, x)
> >>> r
> [2 + I, 1 + I*3**(1/2), 2 - I, 1 - I*3**(1/2)]
>
> Maybe that is from an older version of SymPy, or Windows.  I am +1 on the
> rest of it, however.
>
>
I think Chris got the 32 bit result on his system.

Vinzent

--

You received this message because you are subscribed to the Google Groups 
"sympy-patches" group.
To post to this group, send email to sympy-patc...@googlegroups.com.
To unsubscribe from this group, send email to 
sympy-patches+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sympy-patches?hl=en.


Reply via email to