(vm: &VirtualMachine, obj: PyObjectRef)
| 282 | |
| 283 | impl TryFromObject for OsPath { |
| 284 | fn try_from_object(vm: &VirtualMachine, obj: PyObjectRef) -> PyResult<Self> { |
| 285 | PathConverter::new().try_path(obj, vm) |
| 286 | } |
| 287 | } |
| 288 | |
| 289 | // path_t with allow_fd in CPython |
nothing calls this directly
no test coverage detected