Fix SF #1676971, Complex OverflowError has a typo

This commit is contained in:
Neal Norwitz 2007-03-09 06:01:28 +00:00
parent afd9b2b54d
commit e7881559f2
1 changed files with 1 additions and 1 deletions

View File

@ -481,7 +481,7 @@ complex_pow(PyComplexObject *v, PyObject *w, PyComplexObject *z)
}
else if (errno == ERANGE) {
PyErr_SetString(PyExc_OverflowError,
"complex exponentiaion");
"complex exponentiation");
return NULL;
}
return PyComplex_FromCComplex(p);