]> granicus.if.org Git - python/commitdiff
Untabify Objects/longobject.c.
authorMark Dickinson <dickinsm@gmail.com>
Sun, 21 Aug 2016 09:33:36 +0000 (10:33 +0100)
committerMark Dickinson <dickinsm@gmail.com>
Sun, 21 Aug 2016 09:33:36 +0000 (10:33 +0100)
Objects/longobject.c

index 81f369b0d48af66ee9897c212f535236c6459cb5..5b9bc67a48d053807f4569df7d3a09aca79a6c1a 100644 (file)
@@ -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);
     }