From: Tim Peters Date: Mon, 15 Oct 2001 22:49:27 +0000 (+0000) Subject: Remove obsolete __static__/__dynamic__ distinction. X-Git-Tag: v2.2.1c1~1264 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1ce150c675c946b5f626ca6bce2cb7eaba94d019;p=thirdparty%2FPython%2Fcpython.git Remove obsolete __static__/__dynamic__ distinction. --- diff --git a/Lib/test/test_gc.py b/Lib/test/test_gc.py index 4d12e533fbcb..d4fcf7b223a9 100644 --- a/Lib/test/test_gc.py +++ b/Lib/test/test_gc.py @@ -50,20 +50,13 @@ def test_class(): del A expect_nonzero(gc.collect(), "class") -def test_staticclass(): +def test_newstyleclass(): class A(object): - __dynamic__ = 0 + pass gc.collect() del A expect_nonzero(gc.collect(), "staticclass") -def test_dynamicclass(): - class A(object): - __dynamic__ = 1 - gc.collect() - del A - expect_nonzero(gc.collect(), "dynamicclass") - def test_instance(): class A: pass @@ -185,8 +178,7 @@ def test_all(): run_test("dicts", test_dict) run_test("tuples", test_tuple) run_test("classes", test_class) - run_test("static classes", test_staticclass) - run_test("dynamic classes", test_dynamicclass) + run_test("new style classes", test_newstyleclass) run_test("instances", test_instance) run_test("new instances", test_newinstance) run_test("methods", test_method)