[Python-checkins] cpython (3.3): Issue 24366: Indent code (thanks to li4ick for reporting).

yury.selivanov python-checkins at python.org
Wed Jun 3 00:55:41 CEST 2015


https://hg.python.org/cpython/rev/035aa81c2ba8
changeset:   96485:035aa81c2ba8
branch:      3.3
parent:      96290:c361e38f6576
user:        Yury Selivanov <yselivanov at sprymix.com>
date:        Tue Jun 02 18:53:46 2015 -0400
summary:
  Issue 24366: Indent code (thanks to li4ick for reporting).

files:
  Python/pymath.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Python/pymath.c b/Python/pymath.c
--- a/Python/pymath.c
+++ b/Python/pymath.c
@@ -73,7 +73,7 @@
     absx = fabs(x);
     y = floor(absx);
     if (absx - y >= 0.5)
-    y += 1.0;
+        y += 1.0;
     return copysign(y, x);
 }
 #endif /* HAVE_ROUND */

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


More information about the Python-checkins mailing list