summaryrefslogtreecommitdiffstats
path: root/Objects/floatobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'Objects/floatobject.c')
-rw-r--r--Objects/floatobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/floatobject.c b/Objects/floatobject.c
index adeaa9e..beb35e9 100644
--- a/Objects/floatobject.c
+++ b/Objects/floatobject.c
@@ -481,7 +481,7 @@ float_pow(PyObject *v, PyObject *w, PyObject *z)
if ((PyObject *)z != Py_None) {
PyErr_SetString(PyExc_TypeError, "pow() 3rd argument not "
- "allowed unless all other arguments are integers");
+ "allowed unless all arguments are integers");
return NULL;
}