Searched refs:_PyTime_localtime (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython3/Modules/ |
D | timemodule.c | 527 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.c | 2854 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/ |
D | pytime.h | 218 PyAPI_FUNC(int) _PyTime_localtime(time_t t, struct tm *tm);
|
/external/python/cpython3/Python/ |
D | pytime.c | 1052 _PyTime_localtime(time_t t, struct tm *tm) in _PyTime_localtime() function
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.0b2.rst | 382 Introduced platform independent _PyTime_localtime API that is similar to
|
D | 3.7.0a1.rst | 4380 Introduced platform independent _PyTime_localtime API that is similar to
|