Reword message

This commit is contained in:
Andrew M. Kuchling 2004-06-05 19:49:12 +00:00
parent 6412b121f6
commit 41627bf78d
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}