Author: Alexander Hesse <[email protected]>
Branch: split-rpython
Changeset: r60122:7b430de28490
Date: 2013-01-17 06:11 +0100
http://bitbucket.org/pypy/pypy/changeset/7b430de28490/

Log:    Removed unused code in test_rarithmetic which created errors

diff --git a/rpython/rlib/test/test_rarithmetic.py 
b/rpython/rlib/test/test_rarithmetic.py
--- a/rpython/rlib/test/test_rarithmetic.py
+++ b/rpython/rlib/test/test_rarithmetic.py
@@ -16,10 +16,6 @@
 
 
 class Test_r_int:
-
-    def setup_method(self,method):
-        space = self.space
-
     def test__add__(self):
         self.binary_test(lambda x, y: x + y)
     def test__sub__(self):
@@ -73,10 +69,6 @@
                     assert res == cmp
                     
 class Test_r_uint:
-
-    def setup_method(self,method):
-        space = self.space
-
     def test__add__(self):
         self.binary_test(lambda x, y: x + y)
     def test__sub__(self):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to