Lines Matching defs:tmp
457 PyObject *tmp;
461 tmp = getattr(obj, &name);
465 tmp = getitem_str(obj, &name);
468 tmp = getitem_sequence(obj, index);
471 tmp = getitem_idx(obj, index);
472 if (tmp == NULL)
477 obj = tmp;
811 PyObject *tmp = NULL;
823 tmp = do_conversion(fieldobj, conversion);
824 if (tmp == NULL || PyUnicode_READY(tmp) == -1)
827 /* do the assignment, transferring ownership: fieldobj = tmp */
829 fieldobj = tmp;
830 tmp = NULL;
835 tmp = build_string(format_spec, args, kwargs, recursion_depth-1,
837 if (tmp == NULL || PyUnicode_READY(tmp) == -1)
841 tmp must be kept around until after the call to
843 SubString_init(&expanded_format_spec, tmp, 0, PyUnicode_GET_LENGTH(tmp));
856 Py_XDECREF(tmp);