From: Guido van Rossum Date: Fri, 31 Mar 2000 13:52:29 +0000 (+0000) Subject: Thomas Heller fixes a typo in an error message. X-Git-Tag: v1.6a1~32 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7a5b796322e2bf58fa8afe78bbaccfcc9492d178;p=python Thomas Heller fixes a typo in an error message. --- 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);