Lines Matching refs:tzinfoarg
1243 /* Call getattr(tzinfo, name)(tzinfoarg), and check the result. tzinfo must
1251 call_tzinfo_method(PyObject *tzinfo, const char *name, PyObject *tzinfoarg)
1257 assert(tzinfoarg != NULL);
1261 offset = PyObject_CallMethod(tzinfo, name, "O", tzinfoarg);
1288 /* Call tzinfo.utcoffset(tzinfoarg), and extract an integer from the
1297 call_utcoffset(PyObject *tzinfo, PyObject *tzinfoarg)
1299 return call_tzinfo_method(tzinfo, "utcoffset", tzinfoarg);
1302 /* Call tzinfo.dst(tzinfoarg), and extract an integer from the
1311 call_dst(PyObject *tzinfo, PyObject *tzinfoarg)
1313 return call_tzinfo_method(tzinfo, "dst", tzinfoarg);
1316 /* Call tzinfo.tzname(tzinfoarg), and return the result. tzinfo must be
1323 call_tzname(PyObject *tzinfo, PyObject *tzinfoarg)
1330 assert(tzinfoarg != NULL);
1335 result = _PyObject_CallMethodIdOneArg(tzinfo, &PyId_tzname, tzinfoarg);
1453 * tzinfo.uctoffset(tzinfoarg). If that returns None, \0 is stored into
1463 PyObject *tzinfo, PyObject *tzinfoarg)
1471 offset = call_utcoffset(tzinfo, tzinfoarg);
1510 make_Zreplacement(PyObject *object, PyObject *tzinfoarg)
1522 assert(tzinfoarg != NULL);
1523 temp = call_tzname(tzinfo, tzinfoarg);
1571 * tzinfoarg is the argument to pass to the object's tzinfo method, if
1576 PyObject *tzinfoarg)
1642 assert(tzinfoarg != NULL);
1647 tzinfoarg) < 0)
1665 tzinfoarg);