Re: Issue 2865 in sympy: str(Matrix(...)) should give Matrix(...)

2013-06-18 Thread sympy
Updates: Status: Fixed Comment #16 on issue 2865 by smi...@gmail.com: str(Matrix(...)) should give Matrix(...) http://code.google.com/p/sympy/issues/detail?id=2865 m=Matrix.eye(3) m Matrix([ [1, 0, 0], [0, 1, 0], [0, 0, 1]]) str(m) 'Matrix([[1, 0, 0], [0, 1, 0], [0, 0, 1]])'

Re: Issue 2865 in sympy: str(Matrix(...)) should give Matrix(...)

2012-10-15 Thread sympy
Updates: Labels: -smichr Comment #15 on issue 2865 by smi...@gmail.com: str(Matrix(...)) should give Matrix(...) http://code.google.com/p/sympy/issues/detail?id=2865 The branch is still at https://github.com/sympy/sympy/pull/1167 if anyone wants to continue with it. -- You

Re: Issue 2865 in sympy: str(Matrix(...)) should give Matrix(...)

2012-10-14 Thread sympy
Updates: Labels: -NeedsReview Comment #14 on issue 2865 by julien.r...@gmail.com: str(Matrix(...)) should give Matrix(...) http://code.google.com/p/sympy/issues/detail?id=2865 (No comment was entered for this change.) -- You received this message because you are subscribed to the

Re: Issue 2865 in sympy: str(Matrix(...)) should give Matrix(...)

2012-04-19 Thread sympy
Comment #13 on issue 2865 by asmeu...@gmail.com: str(Matrix(...)) should give Matrix(...) http://code.google.com/p/sympy/issues/detail?id=2865 repr is an alias to str and srepr used instead because str(list) calls repr on the elements, due to a long standing Python bug. -- You received

Re: Issue 2865 in sympy: str(Matrix(...)) should give Matrix(...)

2012-03-27 Thread sympy
Comment #11 on issue 2865 by smi...@gmail.com: str(Matrix(...)) should give Matrix(...) http://code.google.com/p/sympy/issues/detail?id=2865 Current documentation says str should look nice, repr should play nice with eval. Nowhere (from what's been quoted) does it say that one should be

Re: Issue 2865 in sympy: str(Matrix(...)) should give Matrix(...)

2012-03-27 Thread sympy
Comment #12 on issue 2865 by pr...@goodok.ru: str(Matrix(...)) should give Matrix(...) http://code.google.com/p/sympy/issues/detail?id=2865 2) make sympify able to parse a matrix... I came to the same conclusion. Immediately following from the docstrigs of `sympify` function, `str.py`

Re: Issue 2865 in sympy: str(Matrix(...)) should give Matrix(...)

2012-03-26 Thread sympy
Updates: Status: NeedsDecision Comment #8 on issue 2865 by pr...@goodok.ru: str(Matrix(...)) should give Matrix(...) http://code.google.com/p/sympy/issues/detail?id=2865 Sorry, srepr instead rstr srepr(Rational(1, 2) Rational(1, 2) srepr(Integer(1)) 'Integer(1)' It have a

Re: Issue 2865 in sympy: str(Matrix(...)) should give Matrix(...)

2012-03-26 Thread sympy
Comment #9 on issue 2865 by pr...@goodok.ru: str(Matrix(...)) should give Matrix(...) http://code.google.com/p/sympy/issues/detail?id=2865 The copy of Chris's answer: On Mon, Mar 26, 2012 at 12:11 PM, sy...@googlecode.com wrote: Still, I do not understand why we must aplly this to str

Re: Issue 2865 in sympy: str(Matrix(...)) should give Matrix(...)

2012-03-26 Thread sympy
Comment #10 on issue 2865 by pr...@goodok.ru: str(Matrix(...)) should give Matrix(...) http://code.google.com/p/sympy/issues/detail?id=2865 Well, I suspected that it can be related with sympify function. But let's determine the targets of sympify and how it is related with str and srepr

Re: Issue 2865 in sympy: str(Matrix(...)) should give Matrix(...)

2012-03-25 Thread sympy
Updates: Labels: -CodeInCategory-Code -CodeInDifficulty-Easy -CodeInImportedIntoMelange NeedsReview smichr Comment #6 on issue 2865 by smi...@gmail.com: str(Matrix(...)) should give Matrix(...) http://code.google.com/p/sympy/issues/detail?id=2865 The work is currently at

Re: Issue 2865 in sympy: str(Matrix(...)) should give Matrix(...)

2012-01-13 Thread sympy
Comment #4 on issue 2865 by krastano...@gmail.com: str(Matrix(...)) should give Matrix(...) http://code.google.com/p/sympy/issues/detail?id=2865 There was some work done for this here: https://github.com/sympy/sympy/pull/819 -- You received this message because you are subscribed to the

Re: Issue 2865 in sympy: str(Matrix(...)) should give Matrix(...)

2011-11-29 Thread sympy
Updates: Summary: str(Matrix(...)) should give Matrix(...) Comment #3 on issue 2865 by asmeu...@gmail.com: str(Matrix(...)) should give Matrix(...) http://code.google.com/p/sympy/issues/detail?id=2865 (No comment was entered for this change.) -- You received this message because you

Re: Issue 2865 in sympy: str(Matrix(...)) should give Matrix(...)

2011-11-27 Thread sympy
Updates: Labels: CodeInImportedIntoMelange Comment #2 on issue 2865 by pr...@goodok.ru: str(Matrix(...)) should give Matrix(...) http://code.google.com/p/sympy/issues/detail?id=2865 (No comment was entered for this change.) -- You received this message because you are subscribed to

Re: Issue 2865 in sympy: str(Matrix(...)) should give Matrix(...)

2011-11-26 Thread sympy
Comment #1 on issue 2865 by asmeu...@gmail.com: str(Matrix(...)) should give Matrix(...) http://code.google.com/p/sympy/issues/detail?id=2865 See also issue 2866. -- You received this message because you are subscribed to the Google Groups sympy-issues group. To post to this group, send

Issue 2865 in sympy: str(Matrix(...)) should give Matrix(...)

2011-11-24 Thread sympy
Status: Accepted Owner: Labels: Type-Defect Priority-Medium Matrices Printing CodeInCategory-Code CodeInDifficulty-Easy New issue 2865 by asmeu...@gmail.com: str(Matrix(...)) should give Matrix(...) http://code.google.com/p/sympy/issues/detail?id=2865 The string printer for Matrix