From: Neal Norwitz Date: Sun, 20 Jul 2008 19:35:23 +0000 (+0000) Subject: Fix a couple of names in error messages that were wrong X-Git-Tag: v2.6b3~264 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c86b54cb0364fcfccb3be731d3cf223d89b0ebdf;p=python Fix a couple of names in error messages that were wrong --- diff --git a/Objects/bytearrayobject.c b/Objects/bytearrayobject.c index e31b7d5fdf..bc02106e78 100644 --- a/Objects/bytearrayobject.c +++ b/Objects/bytearrayobject.c @@ -501,7 +501,7 @@ bytes_setslice(PyByteArrayObject *self, Py_ssize_t lo, Py_ssize_t hi, else { if (_getbuffer(values, &vbytes) < 0) { PyErr_Format(PyExc_TypeError, - "can't set bytes slice from %.100s", + "can't set bytearray slice from %.100s", Py_TYPE(values)->tp_name); return -1; } @@ -753,7 +753,7 @@ bytes_init(PyByteArrayObject *self, PyObject *args, PyObject *kwds) } /* Parse arguments */ - if (!PyArg_ParseTupleAndKeywords(args, kwds, "|Oss:bytes", kwlist, + if (!PyArg_ParseTupleAndKeywords(args, kwds, "|Oss:bytearray", kwlist, &arg, &encoding, &errors)) return -1;