Merged revisions 69974 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r69974 | mark.dickinson | 2009-02-25 20:29:50 +0000 (Wed, 25 Feb 2009) | 3 lines

  Replace long with twodigits, to avoid depending
  on sizeof(digit) < sizeof(long)
........
This commit is contained in:
Mark Dickinson 2009-02-25 20:33:49 +00:00
parent 9de7ec7868
commit 134708ab14

View file

@ -1557,7 +1557,7 @@ _PyLong_Format(PyObject *aa, int base)
digit powbase = base; /* powbase == base ** power */
int power = 1;
for (;;) {
unsigned long newpow = powbase * (unsigned long)base;
twodigits newpow = powbase * (twodigits)base;
if (newpow >> PyLong_SHIFT) /* doesn't fit in a digit */
break;
powbase = (digit)newpow;