[Python-checkins] r68948 - in python/branches/release26-maint: Objects/longobject.c

mark.dickinson python-checkins at python.org
Sun Jan 25 23:20:40 CET 2009


Author: mark.dickinson
Date: Sun Jan 25 23:20:39 2009
New Revision: 68948

Log:
Merged revisions 68947 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r68947 | mark.dickinson | 2009-01-25 22:12:31 +0000 (Sun, 25 Jan 2009) | 3 lines
  
  No need for carry to be type twodigits in _PyLong_AsByteArray; digit is large enough.
  This change should silence a compiler warning on Windows.
........


Modified:
   python/branches/release26-maint/   (props changed)
   python/branches/release26-maint/Objects/longobject.c

Modified: python/branches/release26-maint/Objects/longobject.c
==============================================================================
--- python/branches/release26-maint/Objects/longobject.c	(original)
+++ python/branches/release26-maint/Objects/longobject.c	Sun Jan 25 23:20:39 2009
@@ -547,7 +547,7 @@
 	twodigits accum;	/* sliding register */
 	unsigned int accumbits; /* # bits in accum */
 	int do_twos_comp;	/* store 2's-comp?  is_signed and v < 0 */
-	twodigits carry;	/* for computing 2's-comp */
+	digit carry;		/* for computing 2's-comp */
 	size_t j;		/* # bytes filled */
 	unsigned char* p;	/* pointer to next byte in bytes */
 	int pincr;		/* direction to move p */


More information about the Python-checkins mailing list