]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add back in a line that was unneeded which advanced a pointer, but commented
authorBrett Cannon <bcannon@gmail.com>
Thu, 6 May 2010 17:56:36 +0000 (17:56 +0000)
committerBrett Cannon <bcannon@gmail.com>
Thu, 6 May 2010 17:56:36 +0000 (17:56 +0000)
out as it is currently unneeded.

This effectively adds back in the line removed in r80809 as a comment.

Objects/floatobject.c

index ab7cfeb751e98666221b9c09fa819523fa469f2f..d6a5a35135332a245e2af2ec7a0ffc61a3b3cec2 100644 (file)
@@ -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;