Comment #2 on issue 1977 by asmeurer: symbols() gives unexpected behavior
when passed a list of length 1
http://code.google.com/p/sympy/issues/detail?id=1977
var() should be fixed too:
In [18]: var('t')
Out[18]: t
In [19]: var(['t'])
Out[19]: t
In [20]: var(['t', 'x'])
Out[20]: (t, x)
In [22]: var('t x')
Out[22]: (t, x)
And stylistically, it bothers me that one returns a tuple and the other a
list. See also issue 1919.
--
You received this message because you are subscribed to the Google Groups
"sympy-issues" 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-issues?hl=en.