Author: stian
Branch: math-improvements
Changeset: r93095:6ba5b9334842
Date: 2017-11-20 15:08 +0100
http://bitbucket.org/pypy/pypy/changeset/6ba5b9334842/

Log:    Typo in comment

diff --git a/rpython/rlib/rbigint.py b/rpython/rlib/rbigint.py
--- a/rpython/rlib/rbigint.py
+++ b/rpython/rlib/rbigint.py
@@ -2120,7 +2120,7 @@
         assert vv >= 0
         assert wm1 >= 1
         q = vv / wm1
-        r = vv % wm1 # This seems to be slightly faster than on widen digits 
than vv - wm1 * q.
+        r = vv % wm1 # This seems to be slightly faster on widen digits than 
vv - wm1 * q.
         vj2 = v.digit(abs(j-2))
         while wm2 * q > ((r << SHIFT) | vj2):
             q -= 1
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to