Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Ddatetime.h130 #define PyDateTime_TIME_GET_HOUR(o) (((PyDateTime_Time*)o)->data[0]) macro
/external/python/cpython2/Doc/c-api/
Ddatetime.rst196 .. c:function:: int PyDateTime_TIME_GET_HOUR(PyDateTime_Time *o)
/external/python/cpython2/Modules/
Ddatetimemodule.c69 #define TIME_GET_HOUR PyDateTime_TIME_GET_HOUR
73 #define TIME_SET_HOUR(o, v) (PyDateTime_TIME_GET_HOUR(o) = (v))