Comment #17 on issue 1977 by [email protected]: symbols() gives unexpected behavior when passed a list of length 1
http://code.google.com/p/sympy/issues/detail?id=1977

I propose the following 3 deprecation warnings:

    >>> symbols('x y',each_char=True)
keyword "each_char" is deprecated; separate symbols with spaces or commas.
    (x, y)

    >>> symbols('xy',each_char=True)
multi-char names without trailing space or comma are ambiguous during deprecation.
    (x, y)

    >>> symbols('x','y')
    deprecated: pass multiple symbols names in an iterable.
    (x, y)

wip in my symbol_deprecation branch.

--
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.

Reply via email to