complex_int(PyObject *v)
{
PyErr_SetString(PyExc_TypeError,
- "can't convert complex to int; use int(abs(z))");
+ "can't convert complex to int");
return NULL;
}
complex_long(PyObject *v)
{
PyErr_SetString(PyExc_TypeError,
- "can't convert complex to long; use long(abs(z))");
+ "can't convert complex to long");
return NULL;
}
complex_float(PyObject *v)
{
PyErr_SetString(PyExc_TypeError,
- "can't convert complex to float; use abs(z)");
+ "can't convert complex to float");
return NULL;
}