mirror of https://github.com/python/cpython
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.
This commit is contained in:
parent
1593f502e8
commit
1fd00a1b71
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue