(zelf: &Py<Self>, args: FuncArgs, vm: &VirtualMachine)
| 105 | type Args = FuncArgs; |
| 106 | #[inline] |
| 107 | fn call(zelf: &Py<Self>, args: FuncArgs, vm: &VirtualMachine) -> PyResult { |
| 108 | (zelf.method.func)(vm, args) |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | impl PyMethodDescriptor { |
no test coverage detected