[pypy-commit] pypy default: disable the setdefault test on kwargs dicts, it doesn't make sense there

cfbolz pypy.commits at gmail.com
Thu Mar 3 05:52:37 EST 2016


Author: Carl Friedrich Bolz <cfbolz at gmx.de>
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):


More information about the pypy-commit mailing list