Commit 0970dbab authored by Raymond Hettinger's avatar Raymond Hettinger

Remove 'e.g.' from error message

parent 8170200c
......@@ -610,7 +610,7 @@ static PyObject *
complex_int(PyObject *v)
{
PyErr_SetString(PyExc_TypeError,
"can't convert complex to int; use e.g. int(abs(z))");
"can't convert complex to int; use int(abs(z))");
return NULL;
}
......@@ -618,7 +618,7 @@ static PyObject *
complex_long(PyObject *v)
{
PyErr_SetString(PyExc_TypeError,
"can't convert complex to long; use e.g. long(abs(z))");
"can't convert complex to long; use long(abs(z))");
return NULL;
}
......@@ -626,7 +626,7 @@ static PyObject *
complex_float(PyObject *v)
{
PyErr_SetString(PyExc_TypeError,
"can't convert complex to float; use e.g. abs(z)");
"can't convert complex to float; use abs(z)");
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