(&self)
| 72 | |
| 73 | impl PyObject { |
| 74 | pub fn mapping_unchecked(&self) -> PyMapping<'_> { |
| 75 | PyMapping { obj: self } |
| 76 | } |
| 77 | |
| 78 | pub fn try_mapping(&self, vm: &VirtualMachine) -> PyResult<PyMapping<'_>> { |
| 79 | let mapping = self.mapping_unchecked(); |
no outgoing calls
no test coverage detected