hold and limit
Hello, good afternoon.
Its possible to suprees limits from evaluate like integrate and sum? I had tryed in many ways, but always get errors.
python
limite = limit(f(x), x=0, hold=true)
show(limite)
```
TypeError Traceback (most recent call last) Cell In[14], line 1 ----> 1 limite = limit(f(x), x=Integer(0), hold=true) 2 show(limite)
File ~/bin/miniconda3/envs/sage/lib/python3.14/site-packages/sage/symbolic/function.pyx:411, in sage.symbolic.function.Function.__call__() 409 return NotImplemented 410 --> 411 def __call__(self, *args, bint coerce=True, bint hold=False): 412 """ 413 Evaluates this function at the given arguments.
TypeError: __call__() got an unexpected keyword argument 'x' ```