Convert to OsPath directly
(&self, obj: PyObjectRef, vm: &VirtualMachine)
| 176 | |
| 177 | /// Convert to OsPath directly |
| 178 | pub fn try_path(&self, obj: PyObjectRef, vm: &VirtualMachine) -> PyResult<OsPath> { |
| 179 | self.try_path_inner(obj, false, vm) |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | /// path_t output - the converted path |
no test coverage detected