Home
last modified time | relevance | path

Searched refs:_PyTime_localtime (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Modules/
Dtimemodule.c527 if (_PyTime_localtime(when, &buf) != 0) in time_localtime()
728 if (_PyTime_localtime(tt, &buf) != 0) in time_strftime()
923 if (_PyTime_localtime(tt, &buf) != 0) in time_asctime()
949 if (_PyTime_localtime(tt, &buf) != 0) in time_ctime()
1596 _PyTime_localtime(t, &p); in init_timezone()
1601 _PyTime_localtime(t, &p); in init_timezone()
D_datetimemodule.c2854 if (_PyTime_localtime(t, &tm) != 0) in date_local_from_object()
4720 if (_PyTime_localtime(t, &local_time) != 0) in local()
4758 if (tzinfo == Py_None && f == _PyTime_localtime in datetime_from_timet_and_us()
4860 tz == Py_None ? _PyTime_localtime : in datetime_datetime_now_impl()
4895 tzinfo == Py_None ? _PyTime_localtime : in datetime_fromtimestamp()
5659 if (_PyTime_localtime(timestamp, &local_time_tm) != 0) in local_timezone_from_timestamp()
/external/python/cpython3/Include/
Dpytime.h218 PyAPI_FUNC(int) _PyTime_localtime(time_t t, struct tm *tm);
/external/python/cpython3/Python/
Dpytime.c1052 _PyTime_localtime(time_t t, struct tm *tm) in _PyTime_localtime() function
/external/python/cpython3/Misc/NEWS.d/
D3.6.0b2.rst382 Introduced platform independent _PyTime_localtime API that is similar to
D3.7.0a1.rst4380 Introduced platform independent _PyTime_localtime API that is similar to