[pypy-commit] pypy py3k: kill old style class test

pjenvey noreply at buildbot.pypy.org
Thu Mar 15 06:23:03 CET 2012


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r53668:4f3e182adee4
Date: 2012-03-14 22:21 -0700
http://bitbucket.org/pypy/pypy/changeset/4f3e182adee4/

Log:	kill old style class test

diff --git a/pypy/module/__pypy__/test/test_special.py b/pypy/module/__pypy__/test/test_special.py
--- a/pypy/module/__pypy__/test/test_special.py
+++ b/pypy/module/__pypy__/test/test_special.py
@@ -46,9 +46,6 @@
         x.bar = 80
         assert lookup_special(x, "foo")() == 42
         assert lookup_special(x, "bar") is None
-        class X:
-            pass
-        raises(TypeError, lookup_special, X(), "foo")
 
     def test_do_what_I_mean(self):
         from __pypy__ import do_what_I_mean


More information about the pypy-commit mailing list