[pypy-commit] pypy virtual-arguments: backout 7c94b4420a32

fijal noreply at buildbot.pypy.org
Fri Jul 20 10:48:29 CEST 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: virtual-arguments
Changeset: r56281:c7c756c8bd95
Date: 2012-07-20 10:46 +0200
http://bitbucket.org/pypy/pypy/changeset/c7c756c8bd95/

Log:	backout 7c94b4420a32

diff --git a/pypy/rlib/rbigint.py b/pypy/rlib/rbigint.py
--- a/pypy/rlib/rbigint.py
+++ b/pypy/rlib/rbigint.py
@@ -187,7 +187,6 @@
         if expo <= 0:
             return rbigint()
         ndig = (expo-1) // SHIFT + 1 # Number of 'digits' in result
-        assert ndig >= 0
         v = rbigint([NULLDIGIT] * ndig, sign)
         frac = math.ldexp(frac, (expo-1) % SHIFT + 1)
         for i in range(ndig-1, -1, -1):


More information about the pypy-commit mailing list