diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2004-06-05 19:29:41 +0000 |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2004-06-05 19:29:41 +0000 |
commit | 204d7861df5bdc1abe15ed83234ca5afce528bcb (patch) | |
tree | 3f018d1d456215d98bc40e56f4389ed6e1b87433 /Objects/intobject.c | |
parent | e1ca3554253bf2169aea8868b0fae5d528537279 (diff) | |
download | cpython-git-204d7861df5bdc1abe15ed83234ca5afce528bcb.tar.gz |
Fix exception wording
Diffstat (limited to 'Objects/intobject.c')
-rw-r--r-- | Objects/intobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |