From: Andrew M. Kuchling Date: Sat, 5 Jun 2004 19:49:12 +0000 (+0000) Subject: Reword message X-Git-Tag: v2.4a1~250 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=41627bf78db5403b493143c90e96d75fc7021a05;p=python Reword message --- diff --git a/Objects/intobject.c b/Objects/intobject.c index b7ac16b6c3..25a01c2de5 100644 --- a/Objects/intobject.c +++ b/Objects/intobject.c @@ -928,7 +928,7 @@ int_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds) if (!PyInt_Check(tmp)) { if (!PyLong_Check(tmp)) { PyErr_SetString(PyExc_ValueError, - "value must be convertable to an int"); + "value can't be converted to int"); Py_DECREF(tmp); return NULL; }