[pypy-commit] pypy SpecialisedTuples: Kill.

arigo noreply at buildbot.pypy.org
Thu Dec 8 18:06:26 CET 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: SpecialisedTuples
Changeset: r50313:526f61d70b8f
Date: 2011-12-08 18:01 +0100
http://bitbucket.org/pypy/pypy/changeset/526f61d70b8f/

Log:	Kill.

diff --git a/pypy/objspace/std/test/test_specialisedtupleobject.py b/pypy/objspace/std/test/test_specialisedtupleobject.py
--- a/pypy/objspace/std/test/test_specialisedtupleobject.py
+++ b/pypy/objspace/std/test/test_specialisedtupleobject.py
@@ -53,14 +53,7 @@
         hash_test([1,(1,2)])
         hash_test([1,('a',2)])
         hash_test([1,()])
-        
-    def test_setitem(self):
-        py.test.skip('skip for now, only needed for cpyext')
-        w_specialisedtuple = self.space.newtuple([self.space.wrap(1)])
-        w_specialisedtuple.setitem(0, self.space.wrap(5))
-        list_w = w_specialisedtuple.tolist()
-        assert len(list_w) == 1
-        assert self.space.eq_w(list_w[0], self.space.wrap(5))        
+
 
 class AppTestW_SpecialisedTupleObject:
 


More information about the pypy-commit mailing list