Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Ddatetime.h131 #define PyDateTime_TIME_GET_MINUTE(o) (((PyDateTime_Time*)o)->data[1]) macro
/external/python/cpython2/Doc/c-api/
Ddatetime.rst203 .. c:function:: int PyDateTime_TIME_GET_MINUTE(PyDateTime_Time *o)
/external/python/cpython2/Modules/
Ddatetimemodule.c70 #define TIME_GET_MINUTE PyDateTime_TIME_GET_MINUTE
74 #define TIME_SET_MINUTE(o, v) (PyDateTime_TIME_GET_MINUTE(o) = (v))