Comment #18 on issue 1823 by smi...@gmail.com: integral.atoms(Symbol) should introspect
http://code.google.com/p/sympy/issues/detail?id=1823

Yes, we need a unified approach for boundaries.

We have function and variables now, and this commit adds symbols:

    >>> i=Integral(x+3, (x, 1, y))
    >>> i.function
    3 + x
    >>> i.variables # the integration variables
    [x]
    >>> i.symbols
    set([y])

And atoms gives youeverything everywhere:
    >>> i.atoms()
    set([1, y, x, 3])

So can this go back to PassedReview?

/c

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