[Python-checkins] r74691 - in python/branches/py3k: Objects/longobject.c

mark.dickinson python-checkins at python.org
Sun Sep 6 22:53:58 CEST 2009


Author: mark.dickinson
Date: Sun Sep  6 22:53:58 2009
New Revision: 74691

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

........
  r74689 | mark.dickinson | 2009-09-06 21:51:37 +0100 (Sun, 06 Sep 2009) | 1 line
  
  Remove redundant assignment
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Objects/longobject.c

Modified: python/branches/py3k/Objects/longobject.c
==============================================================================
--- python/branches/py3k/Objects/longobject.c	(original)
+++ python/branches/py3k/Objects/longobject.c	Sun Sep  6 22:53:58 2009
@@ -1862,7 +1862,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