Lines Matching defs:tmp
901 PyObject *tmp;
938 tmp = try_complex_special_method(r);
939 if (tmp) {
940 r = tmp;
997 tmp = PyNumber_Float(r);
1003 if (tmp == NULL)
1005 assert(PyFloat_Check(tmp));
1006 cr.real = PyFloat_AsDouble(tmp);
1008 Py_DECREF(tmp);
1020 tmp = PyNumber_Float(i);
1021 if (tmp == NULL)
1023 ci.real = PyFloat_AsDouble(tmp);
1024 Py_DECREF(tmp);