[pypy-commit] pypy default: kill two tests that were important for an older module dict implementation

cfbolz pypy.commits at gmail.com
Wed Mar 2 06:34:35 EST 2016


Author: Carl Friedrich Bolz <cfbolz at gmx.de>
Branch: 
Changeset: r82651:61022b28fd0f
Date: 2016-03-01 15:27 +0100
http://bitbucket.org/pypy/pypy/changeset/61022b28fd0f/

Log:	kill two tests that were important for an older module dict
	implementation approach

diff --git a/pypy/objspace/std/test/test_celldict.py b/pypy/objspace/std/test/test_celldict.py
--- a/pypy/objspace/std/test/test_celldict.py
+++ b/pypy/objspace/std/test/test_celldict.py
@@ -109,22 +109,10 @@
 class TestModuleDictImplementation(BaseTestRDictImplementation):
     StrategyClass = ModuleDictStrategy
 
-class TestModuleDictImplementationWithBuiltinNames(BaseTestRDictImplementation):
-    StrategyClass = ModuleDictStrategy
-
-    string = "int"
-    string2 = "isinstance"
-
 
 class TestDevolvedModuleDictImplementation(BaseTestDevolvedDictImplementation):
     StrategyClass = ModuleDictStrategy
 
-class TestDevolvedModuleDictImplementationWithBuiltinNames(BaseTestDevolvedDictImplementation):
-    StrategyClass = ModuleDictStrategy
-
-    string = "int"
-    string2 = "isinstance"
-
 
 class AppTestCellDict(object):
     spaceconfig = {"objspace.std.withcelldict": True}


More information about the pypy-commit mailing list