Commit e7881559 authored by Neal Norwitz's avatar Neal Norwitz

Fix SF #1676971, Complex OverflowError has a typo

parent afd9b2b5
......@@ -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);
......
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