diff --git a/Objects/longobject.c b/Objects/longobject.c index eb9579c5a52..389b4315d32 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -1409,7 +1409,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;