(mut self, module: &'static PyStrInterned)
| 41 | |
| 42 | impl PyNativeFunction { |
| 43 | pub const fn with_module(mut self, module: &'static PyStrInterned) -> Self { |
| 44 | self.module = Some(module); |
| 45 | self |
| 46 | } |
| 47 | |
| 48 | pub fn into_ref(self, ctx: &Context) -> PyRef<Self> { |
| 49 | PyRef::new_ref( |