Kaydet (Commit) 41627bf7 authored tarafından Andrew M. Kuchling's avatar Andrew M. Kuchling

Reword message

üst 6412b121
...@@ -928,7 +928,7 @@ int_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds) ...@@ -928,7 +928,7 @@ int_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
if (!PyInt_Check(tmp)) { if (!PyInt_Check(tmp)) {
if (!PyLong_Check(tmp)) { if (!PyLong_Check(tmp)) {
PyErr_SetString(PyExc_ValueError, PyErr_SetString(PyExc_ValueError,
"value must be convertable to an int"); "value can't be converted to int");
Py_DECREF(tmp); Py_DECREF(tmp);
return NULL; return NULL;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment