[Python-checkins] cpython: Fix formatting after removing tabs.

stefan.krah python-checkins at python.org
Fri Mar 23 16:38:23 CET 2012


http://hg.python.org/cpython/rev/b81a1ef8949c
changeset:   75907:b81a1ef8949c
user:        Stefan Krah <skrah at bytereef.org>
date:        Fri Mar 23 16:34:41 2012 +0100
summary:
  Fix formatting after removing tabs.

files:
  Modules/_decimal/libmpdec/fourstep.c |  6 ++++--
  Modules/_decimal/libmpdec/sixstep.c  |  6 ++++--
  2 files changed, 8 insertions(+), 4 deletions(-)


diff --git a/Modules/_decimal/libmpdec/fourstep.c b/Modules/_decimal/libmpdec/fourstep.c
--- a/Modules/_decimal/libmpdec/fourstep.c
+++ b/Modules/_decimal/libmpdec/fourstep.c
@@ -184,7 +184,8 @@
         }
     }
 
-#if 0    /* An unordered transform is sufficient for convolution. */
+#if 0
+    /* An unordered transform is sufficient for convolution. */
     /* Transpose the matrix. */
     transpose_3xpow2(a, R, C);
 #endif
@@ -213,7 +214,8 @@
     assert(n <= 3*MPD_MAXTRANSFORM_2N);
 
 
-#if 0    /* An unordered transform is sufficient for convolution. */
+#if 0
+    /* An unordered transform is sufficient for convolution. */
     /* Transpose the matrix, producing an R*C matrix. */
     transpose_3xpow2(a, C, R);
 #endif
diff --git a/Modules/_decimal/libmpdec/sixstep.c b/Modules/_decimal/libmpdec/sixstep.c
--- a/Modules/_decimal/libmpdec/sixstep.c
+++ b/Modules/_decimal/libmpdec/sixstep.c
@@ -115,7 +115,8 @@
     }
     mpd_free(tparams);
 
-#if 0    /* An unordered transform is sufficient for convolution. */
+#if 0
+    /* An unordered transform is sufficient for convolution. */
     /* Transpose the matrix. */
     if (!transpose_pow2(a, R, C)) {
         return 0;
@@ -151,7 +152,8 @@
     R = ((mpd_size_t)1) << (log2n - (log2n / 2)); /* number of rows */
 
 
-#if 0    /* An unordered transform is sufficient for convolution. */
+#if 0
+    /* An unordered transform is sufficient for convolution. */
     /* Transpose the matrix, producing an R*C matrix. */
     if (!transpose_pow2(a, C, R)) {
         return 0;

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


More information about the Python-checkins mailing list