| 141 | } |
| 142 | |
| 143 | Status PyFileSystem::CopyFile(const std::string& src, const std::string& dest) { |
| 144 | return SafeCallIntoPython([&]() -> Status { |
| 145 | vtable_.copy_file(handler_.obj(), src, dest); |
| 146 | return CheckPyError(); |
| 147 | }); |
| 148 | } |
| 149 | |
| 150 | Result<std::shared_ptr<io::InputStream>> PyFileSystem::OpenInputStream( |
| 151 | const std::string& path) { |
nothing calls this directly
no test coverage detected