Author: Philip Jenvey <pjen...@underboss.org>
Branch: py3k
Changeset: r84278:0e4c7a2b1e39
Date: 2016-05-07 11:49 -0700
http://bitbucket.org/pypy/pypy/changeset/0e4c7a2b1e39/

Log:    fix

diff --git a/pypy/interpreter/test/test_compiler.py 
b/pypy/interpreter/test/test_compiler.py
--- a/pypy/interpreter/test/test_compiler.py
+++ b/pypy/interpreter/test/test_compiler.py
@@ -850,8 +850,7 @@
         assert getattr(T, '\u03bc') == 2
         assert getattr(T, '\u87d2') == 3
         #assert getattr(T, 'x\U000E0100') == 4
-        expected = ("['__dict__', '__doc__', '__module__', "
-                    "'__qualname__', '__weakref__', "
+        expected = ("['__dict__', '__doc__', '__module__', '__weakref__', "
         #            "x&#917760;", "'&#228;', '&#956;', '&#34770;']")
                     "'&#228;', '&#956;', '&#34770;']")
         assert expected in str(sorted(T.__dict__.keys()))
diff --git a/pypy/objspace/std/test/test_typeobject.py 
b/pypy/objspace/std/test/test_typeobject.py
--- a/pypy/objspace/std/test/test_typeobject.py
+++ b/pypy/objspace/std/test/test_typeobject.py
@@ -763,7 +763,7 @@
         class C(metaclass=T):
             pass
         assert d
-        assert sorted(d[0].keys()) == ['__dict__', '__doc__', '__module__', 
'__qualname__', '__weakref__']
+        assert sorted(d[0].keys()) == ['__dict__', '__doc__', '__module__', 
'__weakref__']
         d = []
         class T(type):
             def mro(cls):
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to