From b9f5e8faf8bf7ba9030511e77b0e65581505d620 Mon Sep 17 00:00:00 2001 From: Jay Bourque Date: Fri, 10 May 2013 14:58:24 -0500 Subject: Whitespace change --- numpy/core/src/umath/ufunc_type_resolution.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'numpy') diff --git a/numpy/core/src/umath/ufunc_type_resolution.c b/numpy/core/src/umath/ufunc_type_resolution.c index 4943eb023..6a16692b0 100644 --- a/numpy/core/src/umath/ufunc_type_resolution.c +++ b/numpy/core/src/umath/ufunc_type_resolution.c @@ -1555,8 +1555,9 @@ set_ufunc_loop_data_types(PyUFuncObject *self, PyArrayObject **op, * Copy the dtype from 'op' if the type_num matches, * to preserve metadata. */ - } else if (op[i] != NULL && - PyArray_DESCR(op[i])->type_num == type_nums[i]) { + } + else if (op[i] != NULL && + PyArray_DESCR(op[i])->type_num == type_nums[i]) { out_dtypes[i] = ensure_dtype_nbo(PyArray_DESCR(op[i])); Py_XINCREF(out_dtypes[i]); } -- cgit v1.2.1