Kaydet (Commit) 74e010aa authored tarafından Mark Dickinson's avatar Mark Dickinson

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
........
üst 2142aa8f
...@@ -1409,7 +1409,6 @@ long_from_binary_base(char **str, int base) ...@@ -1409,7 +1409,6 @@ long_from_binary_base(char **str, int base)
for (bits_per_char = -1; n; ++bits_per_char) for (bits_per_char = -1; n; ++bits_per_char)
n >>= 1; n >>= 1;
/* n <- total # of bits needed, while setting p to end-of-string */ /* n <- total # of bits needed, while setting p to end-of-string */
n = 0;
while (_PyLong_DigitValue[Py_CHARMASK(*p)] < base) while (_PyLong_DigitValue[Py_CHARMASK(*p)] < base)
++p; ++p;
*str = p; *str = p;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment