| 120 | } |
| 121 | |
| 122 | Status PyFileSystem::DeleteRootDirContents() { |
| 123 | return SafeCallIntoPython([&]() -> Status { |
| 124 | vtable_.delete_root_dir_contents(handler_.obj()); |
| 125 | return CheckPyError(); |
| 126 | }); |
| 127 | } |
| 128 | |
| 129 | Status PyFileSystem::DeleteFile(const std::string& path) { |
| 130 | return SafeCallIntoPython([&]() -> Status { |
nothing calls this directly
no test coverage detected