diff -r bea567ae3ff6 -r 0001e49f1c11 mercurial/pure/base85.py --- a/mercurial/pure/base85.py Sun Jul 05 10:59:54 2009 +0200 +++ b/mercurial/pure/base85.py Sun Jul 05 11:00:44 2009 +0200 @@ -25,8 +25,8 @@ longs = len(text) >> 2 words = struct.unpack('>%dL' % (longs), text) - out = ''.join(_b85chars[(word / 52200625) % 85] + - _b85chars2[(word / 7225) % 7225] + + out = ''.join(_b85chars[(word // 52200625) % 85] + + _b85chars2[(word // 7225) % 7225] + _b85chars2[word % 7225] for word in words) @@ -37,7 +37,7 @@ olen = l % 4 if olen: olen += 1 - olen += l / 4 * 5 + olen += l // 4 * 5 return out[:olen] def b85decode(text):