We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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