summaryrefslogtreecommitdiffstats
path: root/Modules/_decimal/_decimal.c
diff options
context:
space:
mode:
authorStefan Krah <skrah@bytereef.org>2012-04-05 13:48:59 (GMT)
committerStefan Krah <skrah@bytereef.org>2012-04-05 13:48:59 (GMT)
commita6169484c2884218038a3a0ff4a218a636ecbad3 (patch)
treee9db7458845ce28cb51b2a33f19890c2349f478e /Modules/_decimal/_decimal.c
parentff3eca0cc3c2b0e57079140af313682eecc5f4cc (diff)
downloadcpython-a6169484c2884218038a3a0ff4a218a636ecbad3.zip
cpython-a6169484c2884218038a3a0ff4a218a636ecbad3.tar.gz
cpython-a6169484c2884218038a3a0ff4a218a636ecbad3.tar.bz2
Formatting.
Diffstat (limited to 'Modules/_decimal/_decimal.c')
-rw-r--r--Modules/_decimal/_decimal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_decimal/_decimal.c b/Modules/_decimal/_decimal.c
index 9ef564f..8d60382 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;
}