mirror of
https://github.com/python/cpython.git
synced 2025-09-11 11:17:16 +00:00
Closes #22146: Merge with 3.4
This commit is contained in:
commit
1151c8b7bf
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ builtin___build_class__(PyObject *self, PyObject *args, PyObject *kwds)
|
||||||
func = PyTuple_GET_ITEM(args, 0); /* Better be callable */
|
func = PyTuple_GET_ITEM(args, 0); /* Better be callable */
|
||||||
if (!PyFunction_Check(func)) {
|
if (!PyFunction_Check(func)) {
|
||||||
PyErr_SetString(PyExc_TypeError,
|
PyErr_SetString(PyExc_TypeError,
|
||||||
"__build__class__: func must be a function");
|
"__build_class__: func must be a function");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
name = PyTuple_GET_ITEM(args, 1);
|
name = PyTuple_GET_ITEM(args, 1);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue