Remove redundant assignment

This commit is contained in:
Mark Dickinson 2009-09-06 20:51:37 +00:00
parent 626faeb77b
commit 752a2daf32
1 changed files with 0 additions and 1 deletions

View File

@ -1579,7 +1579,6 @@ long_from_binary_base(char **str, int base)
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;