Following up on question [1], I'm wondering how one can derive from 
sympy.Function in a way that keeps all the original functionality in place. 
Something as naive as
```
import sympy

x = sympy.Symbol('x')

a = sympy.Function('a')
a(x)  # no problem

class MyTest(sympy.Function):
    pass
b = MyTest('b')
b(x)  # object is not callable
```
doesn't work: `b` is reported not to be callable here.

Any hints why this might be and how to fix it?

Cheers,
Nico


[1] https://groups.google.com/forum/#!topic/sympy/5mLEq4Gbyfk

-- 
You received this message because you are subscribed to the Google Groups 
"sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sympy.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sympy/9394bc67-a3ef-48d8-b82c-8bd537830331%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to