From: Benjamin Peterson Date: Tue, 13 Mar 2012 21:13:09 +0000 (-0500) Subject: fix indentation X-Git-Tag: v3.3.0a2~221^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2354a7593f0e006c60d2080dca40579461549cb9;p=python fix indentation --- diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c index 29c32a30d8..2c4cc7331b 100644 --- a/Modules/mathmodule.c +++ b/Modules/mathmodule.c @@ -694,13 +694,13 @@ math_1_to_whatever(PyObject *arg, double (*func) (double), return NULL; } if (Py_IS_INFINITY(r) && Py_IS_FINITE(x)) { - if (can_overflow) - PyErr_SetString(PyExc_OverflowError, - "math range error"); /* overflow */ - else - PyErr_SetString(PyExc_ValueError, - "math domain error"); /* singularity */ - return NULL; + if (can_overflow) + PyErr_SetString(PyExc_OverflowError, + "math range error"); /* overflow */ + else + PyErr_SetString(PyExc_ValueError, + "math domain error"); /* singularity */ + return NULL; } if (Py_IS_FINITE(r) && errno && is_error(r)) /* this branch unnecessary on most platforms */