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

Function PyDateTime_to_ms

python/pyarrow/src/arrow/python/datetime.h:112–116  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

110}
111
112ARROW_PYTHON_EXPORT
113inline int64_t PyDateTime_to_ms(PyDateTime_DateTime* pydatetime) {
114 return (PyDateTime_to_s(pydatetime) * 1000LL +
115 PyDateTime_DATE_GET_MICROSECOND(pydatetime) / 1000);
116}
117
118ARROW_PYTHON_EXPORT
119inline int64_t PyDateTime_to_us(PyDateTime_DateTime* pydatetime) {

Callers 1

ConvertMethod · 0.85

Calls 1

PyDateTime_to_sFunction · 0.85

Tested by

no test coverage detected