Lines Matching defs:tmp
57 PyObject *tmp;
66 if (_PyObject_LookupAttr(p, &_Py_ID(__origin__), &tmp) < 0) {
69 if (tmp != NULL) {
70 Py_DECREF(tmp);
71 if (_PyObject_LookupAttr(p, &_Py_ID(__args__), &tmp) < 0) {
74 if (tmp != NULL) {
75 Py_DECREF(tmp);
327 PyObject *tmp;
331 int res = _PyObject_LookupAttr(arg, &_Py_ID(__typing_is_unpacked_typevartuple__), &tmp);
333 res = PyObject_IsTrue(tmp);
334 Py_DECREF(tmp);
418 PyObject *prepare, *tmp;
425 tmp = PyObject_CallFunction(prepare, "OO", self, item);
428 tmp = PyObject_CallFunction(prepare, "O(O)", self, item);
431 Py_SETREF(item, tmp);
693 PyObject *tmp = Py_GenericAlias(alias->origin, alias->args);
694 if (tmp != NULL) {
695 Py_SETREF(tmp, PyObject_GetIter(tmp));
697 if (tmp == NULL) {
700 return Py_BuildValue("N(N)", _PyEval_GetBuiltin(&_Py_ID(next)), tmp);