Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Ddatetimemodule.c780 call_tzinfo_method(PyObject *tzinfo, char *methname, PyObject *tzinfoarg) in call_tzinfo_method() argument
784 assert(tzinfo && methname && tzinfoarg); in call_tzinfo_method()
791 result = PyObject_CallMethod(tzinfo, methname, "O", tzinfoarg); in call_tzinfo_method()
821 call_utc_tzinfo_method(PyObject *tzinfo, char *name, PyObject *tzinfoarg, in call_utc_tzinfo_method() argument
829 assert(tzinfoarg != NULL); in call_utc_tzinfo_method()
832 u = call_tzinfo_method(tzinfo, name, tzinfoarg); in call_utc_tzinfo_method()
886 call_utcoffset(PyObject *tzinfo, PyObject *tzinfoarg, int *none) in call_utcoffset() argument
888 return call_utc_tzinfo_method(tzinfo, "utcoffset", tzinfoarg, none); in call_utcoffset()
894 offset_as_timedelta(PyObject *tzinfo, char *name, PyObject *tzinfoarg) { in offset_as_timedelta() argument
897 assert(tzinfo && name && tzinfoarg); in offset_as_timedelta()
[all …]