From 1dc3c898a844594440fb46a56b76208c1e63890a Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Sun, 21 Aug 2016 10:33:36 +0100 Subject: [PATCH] Untabify Objects/longobject.c. --- Objects/longobject.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Objects/longobject.c b/Objects/longobject.c index 81f369b0d48..5b9bc67a48d 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); }