Home | History | Annotate | Download | only in Objects

Lines Matching defs:okey

229     PyObject *okey;
236 okey = PyString_FromString(key);
237 if (okey == NULL)
239 ret = PyObject_DelItem(o, okey);
240 Py_DECREF(okey);
2468 PyObject *okey, *r;
2473 okey = PyString_FromString(key);
2474 if (okey == NULL)
2476 r = PyObject_GetItem(o, okey);
2477 Py_DECREF(okey);
2484 PyObject *okey;
2492 okey = PyString_FromString(key);
2493 if (okey == NULL)
2495 r = PyObject_SetItem(o, okey, value);
2496 Py_DECREF(okey);