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)
752 /* Variant of PyDict_GetItem() that doesn't suppress exceptions.
1553 if (override || PyDict_GetItem(d, key) == NULL) {
1602 /* Since the target dict is empty, PyDict_GetItem()
1619 PyDict_GetItem(a, entry->me_key) == NULL)) {
1650 if (!override && PyDict_GetItem(a, key) != NULL) {
1745 to ensure that mutating comparison and PyDict_GetItem calls can't delete
1787 thisbval = PyDict_GetItem((PyObject *)b, thiskey);
1895 bval = PyDict_GetItem((PyObject *)b, key);
2455 rv = PyDict_GetItem(v, kv);
3151 found = PyDict_GetItem((PyObject *)dv->dv_dict, key);