]> granicus.if.org Git - python/commitdiff
Thomas Heller fixes a typo in an error message.
authorGuido van Rossum <guido@python.org>
Fri, 31 Mar 2000 13:52:29 +0000 (13:52 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 31 Mar 2000 13:52:29 +0000 (13:52 +0000)
Python/ceval.c

index 52131725d00e00a39886611b5ded89868ccc327e..f22544605212f5b588dfaad5319d84c79d7d3397 100644 (file)
@@ -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);