diff --git a/Objects/complexobject.c b/Objects/complexobject.c index 0d37fb2ba11..4de1fb65871 100644 --- a/Objects/complexobject.c +++ b/Objects/complexobject.c @@ -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);