Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1dc3c89

Browse files
committed
Untabify Objects/longobject.c.
1 parent dc590a4 commit 1dc3c89

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Objects/longobject.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2771,8 +2771,8 @@ PyLong_AsDouble(PyObject *v)
27712771
}
27722772
if (Py_ABS(Py_SIZE(v)) <= 1) {
27732773
/* Fast path; single digit long (31 bits) will cast safely
2774-
to double. This improves performance of FP/long operations
2775-
by 20%.
2774+
to double. This improves performance of FP/long operations
2775+
by 20%.
27762776
*/
27772777
return (double)MEDIUM_VALUE((PyLongObject *)v);
27782778
}

0 commit comments

Comments
 (0)