(
&self,
obj: &PyObject,
method: &'static PyStrInterned,
)
| 165 | |
| 166 | #[inline] |
| 167 | pub(crate) fn get_special_method( |
| 168 | &self, |
| 169 | obj: &PyObject, |
| 170 | method: &'static PyStrInterned, |
| 171 | ) -> PyResult<Option<PyMethod>> { |
| 172 | PyMethod::get_special::<false>(obj, method, self) |
| 173 | } |
| 174 | |
| 175 | /// NOT PUBLIC API |
| 176 | #[doc(hidden)] |
no outgoing calls
no test coverage detected