| 816 | bool IsPyInt(PyObject* obj) { return internal::PyIntScalar_Check(obj); } |
| 817 | |
| 818 | ARROW_PYTHON_EXPORT |
| 819 | bool IsPyFloat(PyObject* obj) { return internal::PyFloatScalar_Check(obj); } |
| 820 | |
| 821 | } // namespace py |
| 822 | } // namespace arrow |
nothing calls this directly
no test coverage detected