[Python-checkins] cpython: Formatting.

stefan.krah python-checkins at python.org
Thu Apr 5 16:27:27 CEST 2012


http://hg.python.org/cpython/rev/cd98afa9c4e9
changeset:   76122:cd98afa9c4e9
user:        Stefan Krah <skrah at bytereef.org>
date:        Thu Apr 05 15:48:59 2012 +0200
summary:
  Formatting.

files:
  Modules/_decimal/_decimal.c |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Modules/_decimal/_decimal.c b/Modules/_decimal/_decimal.c
--- a/Modules/_decimal/_decimal.c
+++ b/Modules/_decimal/_decimal.c
@@ -2385,8 +2385,8 @@
     }
 
     /* 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;
     }

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list