| 127 | } |
| 128 | |
| 129 | Status PyFileSystem::DeleteFile(const std::string& path) { |
| 130 | return SafeCallIntoPython([&]() -> Status { |
| 131 | vtable_.delete_file(handler_.obj(), path); |
| 132 | return CheckPyError(); |
| 133 | }); |
| 134 | } |
| 135 | |
| 136 | Status PyFileSystem::Move(const std::string& src, const std::string& dest) { |
| 137 | return SafeCallIntoPython([&]() -> Status { |
nothing calls this directly
no test coverage detected