https://hg.python.org/cpython/rev/95d1f38e540e changeset: 96486:95d1f38e540e branch: 3.4 parent: 96480:34d5a66fd3e0 parent: 96485:035aa81c2ba8 user: Yury Selivanov <yselivanov at sprymix.com> date: Tue Jun 02 18:54:09 2015 -0400 summary: Issue 24366: Merge 3.3 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