1 parent 0abc01e commit e4984c3Copy full SHA for e4984c3
1 file changed
Python/bltinmodule.c
@@ -69,7 +69,7 @@ builtin___build_class__(PyObject *self, PyObject *args, PyObject *kwds)
69
func = PyTuple_GET_ITEM(args, 0); /* Better be callable */
70
if (!PyFunction_Check(func)) {
71
PyErr_SetString(PyExc_TypeError,
72
- "__build__class__: func must be a function");
+ "__build_class__: func must be a function");
73
return NULL;
74
}
75
name = PyTuple_GET_ITEM(args, 1);
0 commit comments