summaryrefslogtreecommitdiff
path: root/Objects/intobject.c
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2004-06-05 19:49:12 +0000
committerAndrew M. Kuchling <amk@amk.ca>2004-06-05 19:49:12 +0000
commit760147fabdebca1c3e45fa03fe836e21791fcd7e (patch)
treeaac0c1b052df8a4bd296eb7952c514e6942e5a0b /Objects/intobject.c
parent9ba79524ba3af94db91f60fcb103af3e9ec65409 (diff)
downloadcpython-760147fabdebca1c3e45fa03fe836e21791fcd7e.tar.gz
Reword message
Diffstat (limited to 'Objects/intobject.c')
-rw-r--r--Objects/intobject.c2
1 files changed, 1 insertions, 1 deletions
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;
}