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

Function PyDate_to_days

python/pyarrow/src/arrow/python/datetime.cc:316–319  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

314}
315
316int64_t PyDate_to_days(PyDateTime_Date* pydate) {
317 return get_days_from_date(PyDateTime_GET_YEAR(pydate), PyDateTime_GET_MONTH(pydate),
318 PyDateTime_GET_DAY(pydate));
319}
320
321Result<int64_t> PyDateTime_utcoffset_s(PyObject* obj) {
322 // calculate offset from UTC timezone in seconds

Callers 3

ConvertMethod · 0.85
PyDate_to_sFunction · 0.85
PyDate_to_msFunction · 0.85

Calls 1

get_days_from_dateFunction · 0.85

Tested by

no test coverage detected