Home
last modified time | relevance | path

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

/third_party/python/Include/
Ddatetime.h140 #define PyDateTime_TIME_GET_MINUTE(o) (((PyDateTime_Time*)o)->data[1]) macro
/third_party/python/Doc/c-api/
Ddatetime.rst208 .. c:function:: int PyDateTime_TIME_GET_MINUTE(PyDateTime_Time *o)
/third_party/python/Modules/
D_datetimemodule.c97 #define TIME_GET_MINUTE PyDateTime_TIME_GET_MINUTE
102 #define TIME_SET_MINUTE(o, v) (PyDateTime_TIME_GET_MINUTE(o) = (v))
D_testcapimodule.c2826 minute = PyDateTime_TIME_GET_MINUTE(obj); in test_PyDateTime_TIME_GET()