MCPcopy Create free account
hub / github.com/apache/arrow / Move

Method Move

python/pyarrow/src/arrow/python/filesystem.cc:136–141  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

134}
135
136Status PyFileSystem::Move(const std::string& src, const std::string& dest) {
137 return SafeCallIntoPython([&]() -> Status {
138 vtable_.move(handler_.obj(), src, dest);
139 return CheckPyError();
140 });
141}
142
143Status PyFileSystem::CopyFile(const std::string& src, const std::string& dest) {
144 return SafeCallIntoPython([&]() -> Status {

Callers

nothing calls this directly

Calls 3

SafeCallIntoPythonFunction · 0.85
CheckPyErrorFunction · 0.85
moveMethod · 0.45

Tested by

no test coverage detected