[pypy-svn] r73611 - pypy/branch/cpython-extension/pypy/module/cpyext/test

jandem at codespeak.net jandem at codespeak.net
Sat Apr 10 13:51:10 CEST 2010


Author: jandem
Date: Sat Apr 10 13:51:09 2010
New Revision: 73611

Modified:
   pypy/branch/cpython-extension/pypy/module/cpyext/test/test_object.py
Log:
remove unused vars from test


Modified: pypy/branch/cpython-extension/pypy/module/cpyext/test/test_object.py
==============================================================================
--- pypy/branch/cpython-extension/pypy/module/cpyext/test/test_object.py	(original)
+++ pypy/branch/cpython-extension/pypy/module/cpyext/test/test_object.py	Sat Apr 10 13:51:09 2010
@@ -70,10 +70,6 @@
         assert space.str_w(api.PyObject_Repr(w_list)) == "[None, 42]"
         
     def test_RichCompare(self, space, api):
-        w_i1 = space.wrap(1)
-        w_i2 = space.wrap(2)
-        w_i3 = space.wrap(3)
-        
         def compare(w_o1, w_o2, opid):
             res = api.PyObject_RichCompareBool(w_o1, w_o2, opid)
             w_res = api.PyObject_RichCompare(w_o1, w_o2, opid)



More information about the Pypy-commit mailing list