[pypy-commit] pypy default: Fix.

mjacob pypy.commits at gmail.com
Sun Feb 21 04:52:09 EST 2016


Author: Manuel Jacob <me at manueljacob.de>
Branch: 
Changeset: r82351:73de30973361
Date: 2016-02-21 10:52 +0100
http://bitbucket.org/pypy/pypy/changeset/73de30973361/

Log:	Fix.

diff --git a/rpython/rlib/test/test_rerased.py b/rpython/rlib/test/test_rerased.py
--- a/rpython/rlib/test/test_rerased.py
+++ b/rpython/rlib/test/test_rerased.py
@@ -192,7 +192,7 @@
 
     def interpret(self, *args, **kwargs):
         kwargs["taggedpointers"] = True
-        return BaseRtypingTest.interpret(self, *args, **kwargs)
+        return BaseRtypingTest.interpret(*args, **kwargs)
     def test_rtype_1(self):
         def f():
             return eraseX(X())


More information about the pypy-commit mailing list