summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/ceval.c')
-rw-r--r--Python/ceval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index 5213172..f225446 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -2774,7 +2774,7 @@ build_class(methods, bases, name)
}
if (!PyString_Check(name)) {
PyErr_SetString(PyExc_SystemError,
- "build_class witn non-string name");
+ "build_class with non-string name");
return NULL;
}
n = PyTuple_Size(bases);