mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Thomas Heller fixes a typo in an error message.
This commit is contained in:
parent
0380c2638c
commit
7a5b796322
1 changed files with 1 additions and 1 deletions
|
@ -2774,7 +2774,7 @@ build_class(methods, bases, name)
|
||||||
}
|
}
|
||||||
if (!PyString_Check(name)) {
|
if (!PyString_Check(name)) {
|
||||||
PyErr_SetString(PyExc_SystemError,
|
PyErr_SetString(PyExc_SystemError,
|
||||||
"build_class witn non-string name");
|
"build_class with non-string name");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
n = PyTuple_Size(bases);
|
n = PyTuple_Size(bases);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue