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

Method type_name

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

Source from the content-addressed store, hash-verified

39}
40
41std::string PyFileSystem::type_name() const {
42 std::string result;
43 auto st = SafeCallIntoPython([&]() -> Status {
44 vtable_.get_type_name(handler_.obj(), &result);
45 if (PyErr_Occurred()) {
46 PyErr_WriteUnraisable(handler_.obj());
47 }
48 return Status::OK();
49 });
50 ARROW_UNUSED(st);
51 return result;
52}
53
54bool PyFileSystem::Equals(const FileSystem& other) const {
55 bool result;

Callers

nothing calls this directly

Calls 3

SafeCallIntoPythonFunction · 0.85
OKFunction · 0.50
get_type_nameMethod · 0.45

Tested by

no test coverage detected