From: Michael W. Hudson Date: Tue, 14 Sep 2004 17:19:09 +0000 (+0000) Subject: Make the word "module" appear in the error string for calling the X-Git-Tag: v2.4b1~262 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1fd00a1b7185a6bfb575e3ca0303e5fdc9d24498;p=thirdparty%2FPython%2Fcpython.git Make the word "module" appear in the error string for calling the module type with silly arguments. (The exact name can be quibbled over, if you care). This was partially inspired by bug #1014215 and so on, but is also just a good idea. --- diff --git a/Objects/moduleobject.c b/Objects/moduleobject.c index 812cbc4ae893..cc75e4570e84 100644 --- a/Objects/moduleobject.c +++ b/Objects/moduleobject.c @@ -151,7 +151,7 @@ module_init(PyModuleObject *m, PyObject *args, PyObject *kwds) { static char *kwlist[] = {"name", "doc", NULL}; PyObject *dict, *name = Py_None, *doc = Py_None; - if (!PyArg_ParseTupleAndKeywords(args, kwds, "S|O", kwlist, + if (!PyArg_ParseTupleAndKeywords(args, kwds, "S|O:module.__init__", kwlist, &name, &doc)) return -1; dict = m->md_dict;