Using bin/isympy I have display problems; what I paste here from the
terminal
```
(sympy)$ ./bin/isympy
IPython console for SymPy 0.7.1-git (Python 2.7.2-64-bit) (ground
types: gmpy)
In [1]: X = symbols('x:4')
In [2]: X
Out[2]: (x₀, x₁, x₂, x₃)
```
I see on the terminal as
```
In [2]: X
Out[2]: (x , x , x, x )
In [3]: print X[0]
x0
```
where I added a print.
Instead this works
```
(sympy)$ ipython
In [1]: from sympy import *
In [2]: X = symbols('x:4')
In [3]: X
Out[3]: (x0, x1, x2, x3)
```
--
You received this message because you are subscribed to the Google Groups
"sympy" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sympy?hl=en.