From 7a5b796322e2bf58fa8afe78bbaccfcc9492d178 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 31 Mar 2000 13:52:29 +0000 Subject: [PATCH] Thomas Heller fixes a typo in an error message. --- Python/ceval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/ceval.c b/Python/ceval.c index 52131725d0..f225446052 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); -- 2.50.1