From: Guido van Rossum Date: Mon, 26 Feb 2007 05:44:27 +0000 (+0000) Subject: Don't confound Neil S on b"a"[0] = b"b". X-Git-Tag: v3.0a1~1182 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=032a284752c4258be41a8b6a9658da55bb157273;p=python Don't confound Neil S on b"a"[0] = b"b". --- diff --git a/Objects/abstract.c b/Objects/abstract.c index dbd159a703..a301287b19 100644 --- a/Objects/abstract.c +++ b/Objects/abstract.c @@ -805,7 +805,7 @@ PyNumber_Index(PyObject *item) if (result && !PyInt_Check(result) && !PyLong_Check(result)) { PyErr_Format(PyExc_TypeError, - "__index__ returned non-int " \ + "__index__ returned non-int " "(type %.200s)", result->ob_type->tp_name); Py_DECREF(result); @@ -815,7 +815,7 @@ PyNumber_Index(PyObject *item) else { PyErr_Format(PyExc_TypeError, "'%.200s' object cannot be interpreted " - "as an index", item->ob_type->tp_name); + "as an integer", item->ob_type->tp_name); } return result; }