Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86c3a3b commit 614bfccCopy full SHA for 614bfcc
1 file changed
Python/pymath.c
@@ -73,7 +73,7 @@ round(double x)
73
absx = fabs(x);
74
y = floor(absx);
75
if (absx - y >= 0.5)
76
- y += 1.0;
+ y += 1.0;
77
return copysign(y, x);
78
}
79
#endif /* HAVE_ROUND */
0 commit comments