This commit is contained in:
Raymond Hettinger 2015-07-20 03:11:16 -04:00
commit aa23fa2e21

View file

@ -2023,7 +2023,7 @@ defdict_init(PyObject *self, PyObject *args, PyObject *kwds)
newdefault = PyTuple_GET_ITEM(args, 0);
if (!PyCallable_Check(newdefault) && newdefault != Py_None) {
PyErr_SetString(PyExc_TypeError,
"first argument must be callable");
"first argument must be callable or None");
return -1;
}
}