| 462 | // char*) |
| 463 | template <typename... ArgTypes> |
| 464 | static inline PyObject* cpp_PyObject_CallMethod(PyObject* obj, const char* method_name, |
| 465 | const char* argspec, ArgTypes... args) { |
| 466 | return PyObject_CallMethod(obj, const_cast<char*>(method_name), |
| 467 | const_cast<char*>(argspec), args...); |
| 468 | } |
| 469 | |
| 470 | } // namespace py |
| 471 | } // namespace arrow |
no outgoing calls
no test coverage detected