Home | History | Annotate | Download | only in Objects

Lines Matching defs:PyDict_GetItem

697 /* Note that, for historical reasons, PyDict_GetItem() suppresses all errors

708 PyDict_GetItem(PyObject *op, PyObject *key)
1523 if (override || PyDict_GetItem(d, key) == NULL) {
1572 /* Since the target dict is empty, PyDict_GetItem()
1589 PyDict_GetItem(a, entry->me_key) == NULL)) {
1620 if (!override && PyDict_GetItem(a, key) != NULL) {
1715 to ensure that mutating comparison and PyDict_GetItem calls can't delete
1757 thisbval = PyDict_GetItem((PyObject *)b, thiskey);
1865 bval = PyDict_GetItem((PyObject *)b, key);
2425 rv = PyDict_GetItem(v, kv);
3121 found = PyDict_GetItem((PyObject *)dv->dv_dict, key);