summaryrefslogtreecommitdiff
path: root/Objects/longobject.c
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2016-08-21 10:33:36 +0100
committerMark Dickinson <dickinsm@gmail.com>2016-08-21 10:33:36 +0100
commit1dc3c898a844594440fb46a56b76208c1e63890a (patch)
tree0498bad53c07f4cccbadd501c3c1a0f591d9db9d /Objects/longobject.c
parentdc590a4cc331601c8ab5332d907ea7abccb88ded (diff)
downloadcpython-git-1dc3c898a844594440fb46a56b76208c1e63890a.tar.gz
Untabify Objects/longobject.c.
Diffstat (limited to 'Objects/longobject.c')
-rw-r--r--Objects/longobject.c4
1 files changed, 2 insertions, 2 deletions
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);
}