From: Yury Selivanov Date: Tue, 2 Jun 2015 22:53:46 +0000 (-0400) Subject: Issue 24366: Indent code (thanks to li4ick for reporting). X-Git-Tag: v3.4.4rc1~5^2~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=614bfcc953141cfdd38606f87a09d39f17367fa3;p=python Issue 24366: Indent code (thanks to li4ick for reporting). --- diff --git a/Python/pymath.c b/Python/pymath.c index 827a773a6a..6799d200ca 100644 --- a/Python/pymath.c +++ b/Python/pymath.c @@ -73,7 +73,7 @@ round(double x) absx = fabs(x); y = floor(absx); if (absx - y >= 0.5) - y += 1.0; + y += 1.0; return copysign(y, x); } #endif /* HAVE_ROUND */