Correct typo (#976)

This commit is contained in:
Angus Hollands 2017-04-03 17:16:14 +01:00 committed by Stefan Krah
parent 9acc6a03f1
commit 8614b59910
1 changed files with 1 additions and 1 deletions

View File

@ -2242,7 +2242,7 @@ PyDecType_FromFloatExact(PyTypeObject *type, PyObject *v,
}
if (!PyFloat_Check(v)) {
PyErr_SetString(PyExc_TypeError,
"argument must be int of float");
"argument must be int or float");
return NULL;
}