The current instantiation of dummies using the workaround fix for anticipated 
polys12 behavior doesn't work properly:

    h[1] >>> x=symbols('x', cls=Dummy)
    h[1] >>> type(x)
    <type 'list'>
    h[2] >>> x
    [_x]

This commit fixes this and tests are added. Should we also allow other classes 
beside Dummy so, for example, `f = symbols('f', cls=Function)` would work or 
just wait until polys12 for that?

    h[1] >>> x=symbols('x', cls=Dummy)
    h[1] >>> type(x)
    <class 'sympy.core.symbol.Dummy'>

https://github.com/sympy/sympy/pull/119

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

Reply via email to