Lines Matching refs:okey
273 PyObject *okey;
280 okey = PyUnicode_FromString(key);
281 if (okey == NULL)
283 ret = PyObject_DelItem(o, okey);
284 Py_DECREF(okey);
2344 PyObject *okey, *r;
2350 okey = PyUnicode_FromString(key);
2351 if (okey == NULL)
2353 r = PyObject_GetItem(o, okey);
2354 Py_DECREF(okey);
2361 PyObject *okey;
2369 okey = PyUnicode_FromString(key);
2370 if (okey == NULL)
2372 r = PyObject_SetItem(o, okey, value);
2373 Py_DECREF(okey);