\brief Check whether obj is an integer, independent of Python versions.
| 69 | |
| 70 | // \brief Check whether obj is an integer, independent of Python versions. |
| 71 | inline bool IsPyInteger(PyObject* obj) { return PyLong_Check(obj); } |
| 72 | |
| 73 | // \brief Import symbols from pandas that we need for various type-checking, |
| 74 | // like pandas.NaT or pandas.NA |
no outgoing calls
no test coverage detected