summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2004-06-05 19:49:12 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2004-06-05 19:49:12 (GMT)
commit41627bf78db5403b493143c90e96d75fc7021a05 (patch)
treefeb182f3044a16d632e0d4079512088977f3f6e9 /Objects
parent6412b121f67b037c1f9e14d75da26121751c2d3d (diff)
downloadcpython-41627bf78db5403b493143c90e96d75fc7021a05.zip
cpython-41627bf78db5403b493143c90e96d75fc7021a05.tar.gz
cpython-41627bf78db5403b493143c90e96d75fc7021a05.tar.bz2
Reword message
Diffstat (limited to 'Objects')
-rw-r--r--Objects/intobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/intobject.c b/Objects/intobject.c
index b7ac16b..25a01c2 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;
}