[pypy-commit] pypy py3k: partial backout of f4af6649c12f: we don't want rlib/ to diverge from default

antocuni noreply at buildbot.pypy.org
Thu Apr 19 15:33:53 CEST 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: py3k
Changeset: r54532:0954589ca523
Date: 2012-04-19 14:10 +0200
http://bitbucket.org/pypy/pypy/changeset/0954589ca523/

Log:	partial backout of f4af6649c12f: we don't want rlib/ to diverge from
	default

diff --git a/pypy/rlib/rbigint.py b/pypy/rlib/rbigint.py
--- a/pypy/rlib/rbigint.py
+++ b/pypy/rlib/rbigint.py
@@ -291,7 +291,7 @@
         return _format(self, digits, prefix)
 
     def repr(self):
-        return _format(self, BASE10)
+        return _format(self, BASE10, '', 'L')
 
     def str(self):
         return _format(self, BASE10)


More information about the pypy-commit mailing list