summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2010-05-06 17:56:36 (GMT)
committerBrett Cannon <bcannon@gmail.com>2010-05-06 17:56:36 (GMT)
commita8ac944924281a2604c1a3329465705fe30bab68 (patch)
treefc45827c493177a3902d01a0a0ddd5a6872a7702 /Objects
parentacab940c70866ade0d5425ceb792c842977e009b (diff)
downloadcpython-a8ac944924281a2604c1a3329465705fe30bab68.zip
cpython-a8ac944924281a2604c1a3329465705fe30bab68.tar.gz
cpython-a8ac944924281a2604c1a3329465705fe30bab68.tar.bz2
Add back in a line that was unneeded which advanced a pointer, but commented
out as it is currently unneeded. This effectively adds back in the line removed in r80809 as a comment.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/floatobject.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/floatobject.c b/Objects/floatobject.c
index ab7cfeb..d6a5a35 100644
--- a/Objects/floatobject.c
+++ b/Objects/floatobject.c
@@ -2478,6 +2478,7 @@ _PyFloat_Pack8(double x, unsigned char *p, int le)
/* Eighth byte */
*p = flo & 0xFF;
+ /* p += incr; Unneeded (for now) */
/* Done */
return 0;