(&self, obj: PyObjectRef, ctx: &Context)
| 111 | |
| 112 | impl PyMethodDescriptor { |
| 113 | pub fn bind(&self, obj: PyObjectRef, ctx: &Context) -> PyRef<PyNativeMethod> { |
| 114 | self.method.build_bound_method(ctx, obj, self.common.typ) |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | #[pyclass( |
no test coverage detected