Home
last modified time | relevance | path

Searched refs:whent (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Modules/
Dtimemodule.c278 time_t whent = _PyTime_DoubleToTimet(when); in time_convert() local
280 if (whent == (time_t)-1 && PyErr_Occurred()) in time_convert()
283 p = function(&whent); in time_convert()
/external/python/cpython3/Modules/
Dtimemodule.c456 time_t whent; local
461 whent = time(NULL);
464 if (_PyTime_ObjectToTime_t(ot, &whent, _PyTime_ROUND_FLOOR) == -1)
467 *pwhen = whent;