| 374 | }; |
| 375 | |
| 376 | PandasWriter(const PandasOptions& options, int64_t num_rows, int num_columns) |
| 377 | : options_(options), num_rows_(num_rows), num_columns_(num_columns) { |
| 378 | PyAcquireGIL lock; |
| 379 | internal::InitPandasStaticData(); |
| 380 | } |
| 381 | virtual ~PandasWriter() {} |
| 382 | |
| 383 | void SetBlockData(PyObject* arr) { |
nothing calls this directly
no test coverage detected