Serialize numpy arrays with custom objects

This commit is contained in:
Philipp Moritz
2016-08-30 16:46:33 -07:00
parent 8c1f0f289e
commit 04c28001fc
5 changed files with 46 additions and 10 deletions
+2
View File
@@ -17,6 +17,8 @@ arrow::Status DeserializeList(std::shared_ptr<arrow::Array> array, int32_t start
arrow::Status DeserializeTuple(std::shared_ptr<arrow::Array> array, int32_t start_idx, int32_t stop_idx, PyObject** out);
arrow::Status DeserializeDict(std::shared_ptr<arrow::Array> array, int32_t start_idx, int32_t stop_idx, PyObject** out);
arrow::Status python_error_to_status();
}
#endif