| 39 | } |
| 40 | |
| 41 | std::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 | |
| 54 | bool PyFileSystem::Equals(const FileSystem& other) const { |
| 55 | bool result; |
nothing calls this directly
no test coverage detected