Home | History | Annotate | Download | only in Modules

Lines Matching refs:dict

97     PyObject *dict;

147 pto->dict = NULL;
161 Py_XDECREF(pto->dict);
217 Py_VISIT(pto->dict);
239 if (pto->dict == NULL) {
240 pto->dict = PyDict_New();
241 if (pto->dict == NULL)
244 Py_INCREF(pto->dict);
245 return pto->dict;
262 "setting partial object's dictionary to a non-dict");
265 tmp = pto->dict;
267 pto->dict = value;
289 pto->dict ? pto->dict : Py_None);
295 PyObject *fn, *fnargs, *kw, *dict;
297 &fn, &fnargs, &kw, &dict))
302 Py_XDECREF(pto->dict);
306 if (dict != Py_None) {
307 pto->dict = dict;
308 Py_INCREF(dict);
310 pto->dict = NULL;
361 offsetof(partialobject, dict), /* tp_dictoffset */