Home | History | Annotate | Download | only in Modules

Lines Matching refs:dict

97     PyObject *dict;

143 pto->dict = NULL;
157 Py_XDECREF(pto->dict);
213 Py_VISIT(pto->dict);
235 if (pto->dict == NULL) {
236 pto->dict = PyDict_New();
237 if (pto->dict == NULL)
240 Py_INCREF(pto->dict);
241 return pto->dict;
258 "setting partial object's dictionary to a non-dict");
261 tmp = pto->dict;
263 pto->dict = value;
285 pto->dict ? pto->dict : Py_None);
291 PyObject *fn, *fnargs, *kw, *dict;
293 &fn, &fnargs, &kw, &dict))
298 Py_XDECREF(pto->dict);
302 if (dict != Py_None) {
303 pto->dict = dict;
304 Py_INCREF(dict);
306 pto->dict = NULL;
357 offsetof(partialobject, dict), /* tp_dictoffset */