f=x.diretive()
f(3) ----> error
f(x=3) ----> ok!
Dose f(x=3) call the method __call__?
| 1 | initial version |
f=x.diretive()
f(3) ----> error
f(x=3) ----> ok!
Dose f(x=3) call the method __call__?
| 2 | No.2 Revision |
f=x.diretive()f=x.derivative()
f(3) ----> error
f(x=3) ----> ok!
Dose f(x=3) call the method __call__?
| 3 | No.3 Revision |
f=x.derivative()
f(3) ----> error
f(x=3) ----> ok!
Dose f(x=3) call the method __call__?
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.