From 1088d988996dd8c63a73a5139173627320d74405 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Fri, 31 Jan 2014 12:04:36 -0500 Subject: The function name for cmath.isinf in PyArg_ParseTuple() was wrong. --- Modules/cmathmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Modules/cmathmodule.c') diff --git a/Modules/cmathmodule.c b/Modules/cmathmodule.c index 36bf4a1e3d..91b369a2f5 100644 --- a/Modules/cmathmodule.c +++ b/Modules/cmathmodule.c @@ -1060,7 +1060,7 @@ static PyObject * cmath_isinf(PyObject *self, PyObject *args) { Py_complex z; - if (!PyArg_ParseTuple(args, "D:isnan", &z)) + if (!PyArg_ParseTuple(args, "D:isinf", &z)) return NULL; return PyBool_FromLong(Py_IS_INFINITY(z.real) || Py_IS_INFINITY(z.imag)); -- cgit v1.2.1