mirror of
https://github.com/python/cpython.git
synced 2025-10-10 00:43:41 +00:00
Issue 24366: Indent code (thanks to li4ick for reporting).
This commit is contained in:
parent
86c3a3b0b7
commit
614bfcc953
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ round(double x)
|
||||||
absx = fabs(x);
|
absx = fabs(x);
|
||||||
y = floor(absx);
|
y = floor(absx);
|
||||||
if (absx - y >= 0.5)
|
if (absx - y >= 0.5)
|
||||||
y += 1.0;
|
y += 1.0;
|
||||||
return copysign(y, x);
|
return copysign(y, x);
|
||||||
}
|
}
|
||||||
#endif /* HAVE_ROUND */
|
#endif /* HAVE_ROUND */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue