diff options
| author | Yury Selivanov <yselivanov@sprymix.com> | 2015-06-02 22:54:31 (GMT) |
|---|---|---|
| committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-06-02 22:54:31 (GMT) |
| commit | 72ea27c89ba48b914e80743ee3391ed0fdda82be (patch) | |
| tree | 40f2a624d2bc4c2e16339e1b6113fc729ed0f609 /Python | |
| parent | aab3c4a2110c3184ac0e9fc843fb1f3e07fbaf53 (diff) | |
| parent | e12685757f8f7e000e789324f85a232032e86ff6 (diff) | |
| download | cpython-72ea27c89ba48b914e80743ee3391ed0fdda82be.zip cpython-72ea27c89ba48b914e80743ee3391ed0fdda82be.tar.gz cpython-72ea27c89ba48b914e80743ee3391ed0fdda82be.tar.bz2 | |
Issue 24366: Merge 3.4
Diffstat (limited to 'Python')
| -rw-r--r-- | Python/pymath.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pymath.c b/Python/pymath.c index 827a773..6799d20 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 */ |
