Lines Matching defs:tmp
234 PyObject *tmp = PyObject_CallMethod(file_obj, "close", NULL);
236 if (tmp == NULL) {
239 Py_XDECREF(tmp);
285 PyObject *tmp = zoneinfo_new_instance(type, key);
286 if (tmp == NULL) {
291 PyObject_CallMethod(weak_cache, "setdefault", "OO", key, tmp);
292 Py_DECREF(tmp);
442 PyObject *tmp = PyObject_CallMethodObjArgs(weak_cache, pop, item,
446 if (tmp == NULL) {
449 Py_DECREF(tmp);
572 PyObject *tmp = PyNumber_Add(dt, tti->utcoff);
573 if (tmp == NULL) {
578 if (PyDateTime_CheckExact(tmp)) {
579 ((PyDateTime_DateTime *)tmp)->fold = 1;
580 dt = tmp;
583 PyObject *replace = PyObject_GetAttrString(tmp, "replace");
587 Py_DECREF(tmp);
610 dt = tmp;
743 PyObject *tmp = PyDateTimeAPI->Delta_FromDelta(
746 if (tmp == NULL) {
750 rv = PyDict_SetDefault(TIMEDELTA_CACHE, pyoffset, tmp);
751 Py_DECREF(tmp);
1319 DayRule tmp = {
1328 *out = tmp;
1759 uint8_t tmp;
1760 if (parse_uint(ptr, &tmp)) {
1765 month += tmp;