Author: Philip Jenvey <[email protected]>
Branch: py3k
Changeset: r64487:ef760aff9941
Date: 2013-05-22 15:14 -0700
http://bitbucket.org/pypy/pypy/changeset/ef760aff9941/

Log:    forbid_delegation was killed

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
@@ -78,10 +78,6 @@
             obj = (1, 2, 3)
             assert self.isspecialised(obj, '_ooo')
 
-    def test_delegation(self):
-        t = self.forbid_delegation((42, 43))
-        raises(ReferenceError, t.__contains__, 0)
-
     def test_len(self):
         t = (42, 43)
         assert len(t) == 2
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to