Lines Matching defs:view
3655 "D.keys() -> a set-like object providing a view on D's keys");
3657 "D.items() -> a set-like object providing a view on D's items");
3659 "D.values() -> an object providing a view on D's values");
4597 dictview_mapping(PyObject *view, void *Py_UNUSED(ignored)) {
4598 assert(view != NULL);
4599 assert(PyDictKeys_Check(view)
4600 || PyDictValues_Check(view)
4601 || PyDictItems_Check(view));
4602 PyObject *mapping = (PyObject *)((_PyDictViewObject *)view)->dv_dict;
4608 "dictionary that this view refers to", NULL},
4808 /* Python interpreter swaps parameters when dict view
4825 /* if other is another dict view, and it is bigger than self,
5077 "Return True if the view and the given iterable have a null intersection.");