Author: Maciej Fijalkowski <[email protected]>
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):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to