Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_datetimemodule.c123 #define GET_DT_TZINFO(p) (HASTZINFO(p) ? \ macro
3673 if (GET_DT_TZINFO(dt) != (PyObject *)self) { in tzinfo_fromutc()
3705 dst = call_dst(GET_DT_TZINFO(dt), result); in tzinfo_fromutc()
5349 return call_utcoffset(GET_DT_TZINFO(self), self); in datetime_utcoffset()
5354 return call_dst(GET_DT_TZINFO(self), self); in datetime_dst()
5359 return call_tzname(GET_DT_TZINFO(self), self); in datetime_tzname()
5430 if (GET_DT_TZINFO(left) == GET_DT_TZINFO(right)) { in datetime_subtract()
5717 if (GET_DT_TZINFO(self) == GET_DT_TZINFO(other)) { in datetime_richcompare()
6238 GET_DT_TZINFO(self), in datetime_gettimetz()
6249 tzinfo = GET_DT_TZINFO(self); in datetime_utctimetuple()
D_zoneinfo.c488 #define GET_DT_TZINFO(p) \ macro
499 if (GET_DT_TZINFO(dt) != obj_self) { in zoneinfo_fromutc()