Comment #1 on issue 1994 by asmeurer: repr(Matrix) does not give re-executable string
http://code.google.com/p/sympy/issues/detail?id=1994

Actually, srepr() does this correctly:

In [6]: srepr(Matrix([1, 2, 3]))
Out[6]: Matrix([[One], [Integer(2)], [Integer(3)]])

In [7]: srepr(Matrix([[1, 2], [3, 4]]))
Out[7]: Matrix([[One, Integer(2)], [Integer(3), Integer(4)]])

What exactly is supposed to be the difference between repr() and srepr()?

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

Reply via email to