Author: Philip Jenvey <[email protected]>
Branch: py3k
Changeset: r59100:4c3946a33fa2
Date: 2012-11-27 17:45 -0800
http://bitbucket.org/pypy/pypy/changeset/4c3946a33fa2/

Log:    now an AttributeError on py3

diff --git a/pypy/interpreter/test/test_module.py 
b/pypy/interpreter/test/test_module.py
--- a/pypy/interpreter/test/test_module.py
+++ b/pypy/interpreter/test/test_module.py
@@ -32,7 +32,7 @@
         delattr(m, 'x')
         raises(AttributeError, getattr, m, 'x')
         raises(AttributeError, delattr, m, 'x')
-        raises(TypeError, setattr, m, '__dict__', {})
+        raises(AttributeError, setattr, m, '__dict__', {})
 
     def test_docstring(self):
         import sys
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to