| 619 | } |
| 620 | |
| 621 | PyObject* PyArrayFromInt64Vector(const int64_t* data, npy_intp* size) { |
| 622 | PyObject* obj = PyArray_SimpleNewFromData( |
| 623 | 1, size, NPY_INT64, (void *)data); |
| 624 | return obj; |
| 625 | } |
| 626 | |
| 627 | PyObject* PyArrayFromStringVector( |
| 628 | const std::string* const* data, npy_intp* size) { |