From: Andrew M. Kuchling Date: Sat, 5 Jun 2004 19:29:41 +0000 (+0000) Subject: Fix exception wording X-Git-Tag: v2.4a1~252 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=204d7861df5bdc1abe15ed83234ca5afce528bcb;p=python Fix exception wording --- diff --git a/Objects/intobject.c b/Objects/intobject.c index 18624b31ef..b7ac16b6c3 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 convertable to an int"); + "value must be convertable to an int"); Py_DECREF(tmp); return NULL; }