From: Andrew M. Kuchling Date: Sat, 5 Jun 2004 19:49:52 +0000 (+0000) Subject: Reword message X-Git-Tag: v2.3.5c1~216 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=de8ddb2bb28ef337c897c64df25c36d0ac86e338;p=thirdparty%2FPython%2Fcpython.git Reword message --- diff --git a/Objects/intobject.c b/Objects/intobject.c index e530ecb645ee..0390a22c05f8 100644 --- a/Objects/intobject.c +++ b/Objects/intobject.c @@ -946,7 +946,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"); return NULL; } ival = PyLong_AsLong(tmp);