Home
last modified time | relevance | path

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

/third_party/python/Modules/
D_datetimemodule.c1154 call_tzinfo_method(PyObject *tzinfo, const char *name, PyObject *tzinfoarg) in call_tzinfo_method() argument
1160 assert(tzinfoarg != NULL); in call_tzinfo_method()
1164 offset = PyObject_CallMethod(tzinfo, name, "O", tzinfoarg); in call_tzinfo_method()
1200 call_utcoffset(PyObject *tzinfo, PyObject *tzinfoarg) in call_utcoffset() argument
1202 return call_tzinfo_method(tzinfo, "utcoffset", tzinfoarg); in call_utcoffset()
1214 call_dst(PyObject *tzinfo, PyObject *tzinfoarg) in call_dst() argument
1216 return call_tzinfo_method(tzinfo, "dst", tzinfoarg); in call_dst()
1226 call_tzname(PyObject *tzinfo, PyObject *tzinfoarg) in call_tzname() argument
1233 assert(tzinfoarg != NULL); in call_tzname()
1238 result = _PyObject_CallMethodIdOneArg(tzinfo, &PyId_tzname, tzinfoarg); in call_tzname()
[all …]