Home
last modified time | relevance | path

Searched refs:PyDateTime_TIME_GET_HOUR (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Include/
Ddatetime.h139 #define PyDateTime_TIME_GET_HOUR(o) (((PyDateTime_Time*)o)->data[0]) macro
/third_party/python/Doc/c-api/
Ddatetime.rst203 .. c:function:: int PyDateTime_TIME_GET_HOUR(PyDateTime_Time *o)
/third_party/python/Modules/
D_datetimemodule.c96 #define TIME_GET_HOUR PyDateTime_TIME_GET_HOUR
101 #define TIME_SET_HOUR(o, v) (PyDateTime_TIME_GET_HOUR(o) = (v))
D_testcapimodule.c2825 hour = PyDateTime_TIME_GET_HOUR(obj); in test_PyDateTime_TIME_GET()