We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6a9ada commit 914a2edCopy full SHA for 914a2ed
Objects/listobject.c
@@ -389,8 +389,8 @@ list_concat(a, bb)
389
PyListObject *np;
390
if (!PyList_Check(bb)) {
391
PyErr_Format(PyExc_TypeError,
392
- "can only append list (not \"%.200s\") to list",
+ "can only concatenate list (not \"%.200s\") to list",
393
- bb->ob_type->tp_name);
+ bb->ob_type->tp_name);
394
return NULL;
395
}
396
#define b ((PyListObject *)bb)
0 commit comments