diff options
author | Brett Cannon <bcannon@gmail.com> | 2010-05-06 17:56:36 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2010-05-06 17:56:36 (GMT) |
commit | a8ac944924281a2604c1a3329465705fe30bab68 (patch) | |
tree | fc45827c493177a3902d01a0a0ddd5a6872a7702 | |
parent | acab940c70866ade0d5425ceb792c842977e009b (diff) | |
download | cpython-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.
-rw-r--r-- | Objects/floatobject.c | 1 |
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; |