(&self, obj: &impl AsObject, args: impl IntoFuncArgs)
| 196 | |
| 197 | #[deprecated(note = "in favor of `obj.call(args, vm)`")] |
| 198 | pub fn invoke(&self, obj: &impl AsObject, args: impl IntoFuncArgs) -> PyResult { |
| 199 | obj.as_object().call(args, self) |
| 200 | } |
| 201 | } |
no test coverage detected