projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
afd9b2b
)
Fix SF #1676971, Complex OverflowError has a typo
author
Neal Norwitz
<nnorwitz@gmail.com>
Fri, 9 Mar 2007 06:01:28 +0000
(06:01 +0000)
committer
Neal Norwitz
<nnorwitz@gmail.com>
Fri, 9 Mar 2007 06:01:28 +0000
(06:01 +0000)
Objects/complexobject.c
patch
|
blob
|
history
diff --git
a/Objects/complexobject.c
b/Objects/complexobject.c
index 0d37fb2ba1186cdf5e594de05cf86f5b605c355a..4de1fb65871ec899f803f7425e49d4d17026d2b2 100644
(file)
--- 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 exponentia
t
ion");
return NULL;
}
return PyComplex_FromCComplex(p);