Commit bafedecc authored by Skip Montanaro's avatar Skip Montanaro

based upon a suggestion in c.l.py, this slight expansion of the

OverflowError message seems reasonable.
parent b9a96282
...@@ -211,7 +211,7 @@ PyLong_AsLong(PyObject *vv) ...@@ -211,7 +211,7 @@ PyLong_AsLong(PyObject *vv)
overflow: overflow:
PyErr_SetString(PyExc_OverflowError, PyErr_SetString(PyExc_OverflowError,
"long int too large to convert"); "long int too large to convert to int");
return -1; return -1;
} }
......
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