Home | History | Annotate | Download | only in Objects

Lines Matching defs:dict

1968     PyObject *keys=NULL, *args=NULL, *result=NULL, *dict=NULL;
1977 dict = _PyObject_GetAttrId((PyObject *)so, &PyId___dict__);
1978 if (dict == NULL) {
1980 dict = Py_None;
1981 Py_INCREF(dict);
1983 result = PyTuple_Pack(3, Py_TYPE(so), args, dict);
1987 Py_XDECREF(dict);