[Python-checkins] cpython: Untabify Objects/longobject.c.

mark.dickinson python-checkins at python.org
Sun Aug 21 05:33:43 EDT 2016


https://hg.python.org/cpython/rev/c10a8f9775a2
changeset:   102825:c10a8f9775a2
user:        Mark Dickinson <dickinsm at gmail.com>
date:        Sun Aug 21 10:33:36 2016 +0100
summary:
  Untabify Objects/longobject.c.

files:
  Objects/longobject.c |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Objects/longobject.c b/Objects/longobject.c
--- a/Objects/longobject.c
+++ b/Objects/longobject.c
@@ -2771,8 +2771,8 @@
     }
     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);
     }

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list