Hello,
I recently updated param to the version 2.3.1 and noticed that the method .param.params() is removed. In the version 2.2.1, the method still exists (although deprecated), and the documentation recommended using .param.values() (see link).
However, these 2 methods return different things:
params()→{name: Parameter}(parameter object)values()→{name: value}(parameter values)
I need access to the Parameter objects, because I need attributes like allow_None.
I notice that there is a property _cls_parameters that also returns {name: Parameter}. Is this property equivalent to the old .params() method? Or is there another recommended way to access the full Parameter objects in param 2.3+?
Thanks!