summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-03-31 13:52:29 (GMT)
committerGuido van Rossum <guido@python.org>2000-03-31 13:52:29 (GMT)
commit7a5b796322e2bf58fa8afe78bbaccfcc9492d178 (patch)
tree98daa6c7611e7ee203eabfe0fe3e4c37a0fadc2d /Python
parent0380c2638c1d13c26b6d96ea1a7ca45747bfb2b2 (diff)
downloadcpython-7a5b796322e2bf58fa8afe78bbaccfcc9492d178.zip
cpython-7a5b796322e2bf58fa8afe78bbaccfcc9492d178.tar.gz
cpython-7a5b796322e2bf58fa8afe78bbaccfcc9492d178.tar.bz2
Thomas Heller fixes a typo in an error message.
Diffstat (limited to 'Python')
-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);