From: Mark Dickinson Date: Sun, 21 Aug 2016 09:33:36 +0000 (+0100) Subject: Untabify Objects/longobject.c. X-Git-Tag: v3.6.0b1~614 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1dc3c898a844594440fb46a56b76208c1e63890a;p=python Untabify Objects/longobject.c. --- diff --git a/Objects/longobject.c b/Objects/longobject.c index 81f369b0d4..5b9bc67a48 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -2771,8 +2771,8 @@ PyLong_AsDouble(PyObject *v) } if (Py_ABS(Py_SIZE(v)) <= 1) { /* Fast path; single digit long (31 bits) will cast safely - to double. This improves performance of FP/long operations - by 20%. + to double. This improves performance of FP/long operations + by 20%. */ return (double)MEDIUM_VALUE((PyLongObject *)v); }