Author: Carl Friedrich Bolz <[email protected]>
Branch: 
Changeset: r82670:618d06ca2419
Date: 2016-03-02 12:41 +0100
http://bitbucket.org/pypy/pypy/changeset/618d06ca2419/

Log:    disable the setdefault test on kwargs dicts, it doesn't make sense
        there

diff --git a/pypy/objspace/std/test/test_kwargsdict.py 
b/pypy/objspace/std/test/test_kwargsdict.py
--- a/pypy/objspace/std/test/test_kwargsdict.py
+++ b/pypy/objspace/std/test/test_kwargsdict.py
@@ -118,10 +118,16 @@
     def test_delitem(self):
         pass # delitem devolves for now
 
+    def test_setdefault_fast(self):
+        pass # not based on hashing at all
+
 class TestDevolvedKwargsDictImplementation(BaseTestDevolvedDictImplementation):
     get_impl = get_impl
     StrategyClass = KwargsDictStrategy
 
+    def test_setdefault_fast(self):
+        pass # not based on hashing at all
+
 
 class AppTestKwargsDictStrategy(object):
     def setup_class(cls):
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to