diff options
author | Marc-André Lemburg <mal@egenix.com> | 2000-06-16 17:05:57 (GMT) |
---|---|---|
committer | Marc-André Lemburg <mal@egenix.com> | 2000-06-16 17:05:57 (GMT) |
commit | 29dc381ce0fae7b5356a78228c7aad1c352fbda5 (patch) | |
tree | be852ab470a5ce6c31ec66d56119c6afcb9e778f | |
parent | c3fd45fe8057ae16b07f83c63757ba625718a4ac (diff) | |
download | cpython-29dc381ce0fae7b5356a78228c7aad1c352fbda5.zip cpython-29dc381ce0fae7b5356a78228c7aad1c352fbda5.tar.gz cpython-29dc381ce0fae7b5356a78228c7aad1c352fbda5.tar.bz2 |
Michael Hudson <mwh21@cam.ac.uk>:
The error message refers to "append", yet the operation in
question is "concat".
-rw-r--r-- | Objects/tupleobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c index 451e794..f89fa36 100644 --- a/Objects/tupleobject.c +++ b/Objects/tupleobject.c @@ -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; } |