From: Stefan Krah Date: Thu, 5 Apr 2012 13:48:59 +0000 (+0200) Subject: Formatting. X-Git-Tag: v3.3.0a3~303 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a6169484c2884218038a3a0ff4a218a636ecbad3;p=thirdparty%2FPython%2Fcpython.git Formatting. --- diff --git a/Modules/_decimal/_decimal.c b/Modules/_decimal/_decimal.c index 9ef564f90f5f..8d603823a67b 100644 --- a/Modules/_decimal/_decimal.c +++ b/Modules/_decimal/_decimal.c @@ -2385,8 +2385,8 @@ dectuple_as_str(PyObject *dectuple) } /* coefficient */ - digits = sequence_as_tuple(PyTuple_GET_ITEM(dectuple, 1), - PyExc_ValueError, "coefficient must be a tuple of digits"); + digits = sequence_as_tuple(PyTuple_GET_ITEM(dectuple, 1), PyExc_ValueError, + "coefficient must be a tuple of digits"); if (digits == NULL) { goto error; }