Lines Matching refs:tmpkey
6084 PyObject *dict1 = NULL, *dict2 = NULL, *combined = NULL, *tmpkey = NULL; local
6119 tmpkey = PyTuple_GET_ITEM(enumerators, i);
6120 Py_INCREF(tmpkey);
6121 if (!PyText_Check(tmpkey)) {
6123 if (PyUnicode_Check(tmpkey)) {
6124 const char *text = PyText_AsUTF8(tmpkey);
6127 Py_DECREF(tmpkey);
6128 tmpkey = PyString_FromString(text);
6129 if (tmpkey == NULL)
6142 if (PyDict_SetItem(dict1, tmpkey, value) < 0)
6144 if (PyDict_SetItem(dict2, value, tmpkey) < 0)
6146 Py_DECREF(tmpkey);
6147 tmpkey = NULL;
6172 Py_XDECREF(tmpkey);