Home | History | Annotate | Download | only in Python

Lines Matching defs:dict

859             "globals must be a real dict; try eval(expr, {}, mapping)"
860 : "globals must be a dict");
951 PyErr_Format(PyExc_TypeError, "exec() globals must be a dict, not %.100s",
2092 /*AC: we need to keep the kwds dict intact to easily call into the
2669 -1, /* multiple "initialization" just copies the module dict. */
2681 PyObject *mod, *dict, *debug;
2691 dict = PyModule_GetDict(mod);
2706 if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0) \
2721 SETBUILTIN("dict", &PyDict_Type);
2742 if (PyDict_SetItemString(dict, "__debug__", debug) < 0) {