Michael Hudson <mwh21@cam.ac.uk>:

The error message refers to "append", yet the operation in
question is "concat".
This commit is contained in:
Marc-André Lemburg 2000-06-16 17:05:57 +00:00
parent c3fd45fe80
commit 29dc381ce0
1 changed files with 1 additions and 1 deletions

View File

@ -362,7 +362,7 @@ tupleconcat(a, bb)
PyTupleObject *np;
if (!PyTuple_Check(bb)) {
PyErr_Format(PyExc_TypeError,
"can only append tuple (not \"%.200s\") to tuple",
"can only concatenate tuple (not \"%.200s\") to tuple",
bb->ob_type->tp_name);
return NULL;
}