From: Mark Dickinson Date: Sun, 6 Sep 2009 20:51:37 +0000 (+0000) Subject: Remove redundant assignment X-Git-Tag: v2.7a1~575 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=752a2daf323572cbeaa6dec42a807fc421d577c3;p=thirdparty%2FPython%2Fcpython.git Remove redundant assignment --- diff --git a/Objects/longobject.c b/Objects/longobject.c index 1fe7b06b49a0..f5a63de78188 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -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;