diff options
Diffstat (limited to 'Objects/longobject.c')
-rw-r--r-- | Objects/longobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/longobject.c b/Objects/longobject.c index 81f369b..5b9bc67 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); } |