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
commita30a8b430f052371655e9ef6e7792dab50db1d6c (patch)
tree7cb1d395862b895f2de222b1fb2ee2a41e0c01dd /Objects/longobject.c
parentf711b8b558f283ddeadb473848574c59667fd205 (diff)
downloadcpython-a30a8b430f052371655e9ef6e7792dab50db1d6c.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);
}