[Python-checkins] cpython (merge 3.5 -> default): Issue 24366: Merge 3.5

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


https://hg.python.org/cpython/rev/54459fdf2bca
changeset:   96488:54459fdf2bca
parent:      96484:8a6db1679a23
parent:      96487:67f0843a2ecf
user:        Yury Selivanov <yselivanov at sprymix.com>
date:        Tue Jun 02 18:54:44 2015 -0400
summary:
  Issue 24366: Merge 3.5

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