MCPcopy Create free account
hub / github.com/apache/arrow / cpp_PyObject_CallMethod

Function cpp_PyObject_CallMethod

python/pyarrow/src/arrow/python/common.h:464–468  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

462// char*)
463template <typename... ArgTypes>
464static 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

Callers 8

SerializeExtInstanceFunction · 0.85
DeserializeExtInstanceFunction · 0.85
CloseMethod · 0.85
SeekMethod · 0.85
ReadMethod · 0.85
ReadBufferMethod · 0.85
WriteMethod · 0.85
TellMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected