(&self, obj: Option<PyObjectRef>)
| 104 | if self.is_none(&obj) { None } else { Some(obj) } |
| 105 | } |
| 106 | pub fn unwrap_or_none(&self, obj: Option<PyObjectRef>) -> PyObjectRef { |
| 107 | obj.unwrap_or_else(|| self.ctx.none()) |
| 108 | } |
| 109 | |
| 110 | pub fn call_get_descriptor_specific( |
| 111 | &self, |
no test coverage detected