[pypy-commit] pypy virtual-arguments: backout 7462374e4379

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


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

Log:	backout 7462374e4379

diff --git a/pypy/rlib/rbigint.py b/pypy/rlib/rbigint.py
--- a/pypy/rlib/rbigint.py
+++ b/pypy/rlib/rbigint.py
@@ -1225,8 +1225,6 @@
     assert size_v >= size_w and size_w > 1 # Assert checks by div()
 
     size_a = size_v - size_w + 1
-    if size_a < 0:
-        size_a = 0
     a = rbigint([NULLDIGIT] * size_a, 1)
 
     j = size_v


More information about the pypy-commit mailing list