Author: Armin Rigo <ar...@tunes.org>
Branch: py3.5
Changeset: r90672:f224cca395b7
Date: 2017-03-14 09:03 +0100
http://bitbucket.org/pypy/pypy/changeset/f224cca395b7/

Log:    mark this test as failing

diff --git a/pypy/objspace/std/test/test_dictmultiobject.py 
b/pypy/objspace/std/test/test_dictmultiobject.py
--- a/pypy/objspace/std/test/test_dictmultiobject.py
+++ b/pypy/objspace/std/test/test_dictmultiobject.py
@@ -681,6 +681,10 @@
         assert isinstance(list({b'a': 1})[0], bytes)
 
     def test_interned_keywords(self):
+        py.test.skip("no longer works")
+        # At some point in the past, we had kwargsdict automatically
+        # intern every single key we get out of it.  That's a big
+        # pointless waste of time.  So the following test fails now.
         assert list(dict(abcdef=1))[0] is 'abcdef'
 
 
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to