[Python-checkins] r74689 - python/trunk/Objects/longobject.c

mark.dickinson python-checkins at python.org
Sun Sep 6 22:51:38 CEST 2009


Author: mark.dickinson
Date: Sun Sep  6 22:51:37 2009
New Revision: 74689

Log:
Remove redundant assignment

Modified:
   python/trunk/Objects/longobject.c

Modified: python/trunk/Objects/longobject.c
==============================================================================
--- python/trunk/Objects/longobject.c	(original)
+++ python/trunk/Objects/longobject.c	Sun Sep  6 22:51:37 2009
@@ -1579,7 +1579,6 @@
 	for (bits_per_char = -1; n; ++bits_per_char)
 		n >>= 1;
 	/* n <- total # of bits needed, while setting p to end-of-string */
-	n = 0;
 	while (_PyLong_DigitValue[Py_CHARMASK(*p)] < base)
 		++p;
 	*str = p;


More information about the Python-checkins mailing list