Searched refs:PyDateTime_TIME_GET_MINUTE (Results 1 – 4 of 4) sorted by relevance
140 #define PyDateTime_TIME_GET_MINUTE(o) (((PyDateTime_Time*)o)->data[1]) macro
208 .. c:function:: int PyDateTime_TIME_GET_MINUTE(PyDateTime_Time *o)
97 #define TIME_GET_MINUTE PyDateTime_TIME_GET_MINUTE102 #define TIME_SET_MINUTE(o, v) (PyDateTime_TIME_GET_MINUTE(o) = (v))
2826 minute = PyDateTime_TIME_GET_MINUTE(obj); in test_PyDateTime_TIME_GET()