Home
last modified time | relevance | path

Searched refs:PyDateTime_DATE_GET_HOUR (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Include/
Ddatetime.h127 #define PyDateTime_DATE_GET_HOUR(o) (((PyDateTime_DateTime*)o)->data[4]) macro
/third_party/python/Doc/c-api/
Ddatetime.rst174 .. c:function:: int PyDateTime_DATE_GET_HOUR(PyDateTime_DateTime *o)
/third_party/python/Modules/
D_zoneinfo.c2205 hour = PyDateTime_DATE_GET_HOUR(dt); in get_local_timestamp()
D_datetimemodule.c73 #define DATE_GET_HOUR PyDateTime_DATE_GET_HOUR
86 #define DATE_SET_HOUR(o, v) (PyDateTime_DATE_GET_HOUR(o) = (v))
D_testcapimodule.c2811 hour = PyDateTime_DATE_GET_HOUR(obj); in test_PyDateTime_DATE_GET()