(self)
| 2142 | return s + ")" |
| 2143 | |
| 2144 | def to_string(self): |
| 2145 | state_ptr = self.val['state_'] |
| 2146 | if int(state_ptr) == 0: |
| 2147 | return "arrow::Status::OK()" |
| 2148 | return self._format_error(state_ptr.dereference()) |
| 2149 | |
| 2150 | |
| 2151 | class ResultPrinter(StatusPrinter): |
nothing calls this directly
no test coverage detected