Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7a5b796

Browse files
committed
Thomas Heller fixes a typo in an error message.
1 parent 0380c26 commit 7a5b796

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Python/ceval.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2774,7 +2774,7 @@ build_class(methods, bases, name)
27742774
}
27752775
if (!PyString_Check(name)) {
27762776
PyErr_SetString(PyExc_SystemError,
2777-
"build_class witn non-string name");
2777+
"build_class with non-string name");
27782778
return NULL;
27792779
}
27802780
n = PyTuple_Size(bases);

0 commit comments

Comments
 (0)