We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents aab3c4a + e126857 commit 72ea27cCopy full SHA for 72ea27c
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