(
&'static self,
class: &'static Py<PyType>,
ctx: &Context,
)
| 128 | } |
| 129 | |
| 130 | pub fn to_method( |
| 131 | &'static self, |
| 132 | class: &'static Py<PyType>, |
| 133 | ctx: &Context, |
| 134 | ) -> PyMethodDescriptor { |
| 135 | PyMethodDescriptor::new(self, class, ctx) |
| 136 | } |
| 137 | |
| 138 | pub const fn to_bound_method( |
| 139 | &'static self, |
no test coverage detected