Lines Matching defs:dict
917 "globals must be a real dict; try eval(expr, {}, mapping)"
918 : "globals must be a dict");
1020 PyErr_Format(PyExc_TypeError, "exec() globals must be a dict, not %.100s",
2343 /*AC: we need to keep the kwds dict intact to easily call into the
3017 -1, /* multiple "initialization" just copies the module dict. */
3029 PyObject *mod, *dict, *debug;
3036 dict = PyModule_GetDict(mod);
3051 if (PyDict_SetItemString(dict, NAME, (PyObject *)OBJECT) < 0) \
3066 SETBUILTIN("dict", &PyDict_Type);
3087 if (PyDict_SetItemString(dict, "__debug__", debug) < 0) {