Home
last modified time | relevance | path

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

/third_party/python/Modules/
D_datetimemodule.c5897 struct tm utc_time_tm; in local_timezone_from_timestamp() local
5910 if (_PyTime_gmtime(timestamp, &utc_time_tm) != 0) in local_timezone_from_timestamp()
5912 utc_time = new_datetime(utc_time_tm.tm_year + 1900, in local_timezone_from_timestamp()
5913 utc_time_tm.tm_mon + 1, in local_timezone_from_timestamp()
5914 utc_time_tm.tm_mday, in local_timezone_from_timestamp()
5915 utc_time_tm.tm_hour, in local_timezone_from_timestamp()
5916 utc_time_tm.tm_min, in local_timezone_from_timestamp()
5917 utc_time_tm.tm_sec, 0, Py_None, 0); in local_timezone_from_timestamp()