Lines Matching defs:tmp
869 PyObject *tmp = NULL;
927 tmp = PyUnicode_FromOrdinal(x);
984 tmp = _PyLong_Format(value, base);
985 if (tmp == NULL || PyUnicode_READY(tmp) == -1)
989 n_digits = PyUnicode_GET_LENGTH(tmp);
995 if (PyUnicode_READ_CHAR(tmp, inumeric_chars) == '-') {
1026 tmp, inumeric_chars,
1027 tmp, prefix, format->fill_char,
1031 Py_XDECREF(tmp);
1492 PyObject *tmp = NULL;
1531 tmp = PyNumber_Float(obj);
1532 if (tmp == NULL)
1534 result = format_float_internal(tmp, &format, writer);
1544 Py_XDECREF(tmp);