[Python-checkins] r80874 - python/trunk/Objects/floatobject.c

brett.cannon python-checkins at python.org
Thu May 6 19:56:36 CEST 2010


Author: brett.cannon
Date: Thu May  6 19:56:36 2010
New Revision: 80874

Log:
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.


Modified:
   python/trunk/Objects/floatobject.c

Modified: python/trunk/Objects/floatobject.c
==============================================================================
--- python/trunk/Objects/floatobject.c	(original)
+++ python/trunk/Objects/floatobject.c	Thu May  6 19:56:36 2010
@@ -2478,6 +2478,7 @@
 
 		/* Eighth byte */
 		*p = flo & 0xFF;
+		/* p += incr; Unneeded (for now) */
 
 		/* Done */
 		return 0;


More information about the Python-checkins mailing list