From: Tim Peters Date: Thu, 11 Jul 2002 07:11:13 +0000 (+0000) Subject: Repaired optimistic comment in new test. X-Git-Tag: v2.2.2b1~273 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7b63f46f3a2894730f354965709a84fcacc30b45;p=thirdparty%2FPython%2Fcpython.git Repaired optimistic comment in new test. --- diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index cd8911df6ce3..bbdcc0935efc 100644 --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -2994,9 +2994,8 @@ def subtype_resurrection(): c = C() c.attr = 42 - # The only interesting thing here is whether this blows up in a - # debug build, due to flawed GC tracking logic in typeobject.c's - # call_finalizer() (a 2.2.1 bug). + # The only interesting thing here is whether this blows up, due to flawed + # GC tracking logic in typeobject.c's call_finalizer() (a 2.2.1 bug). del c del C.container[-1] # resurrect it again for the heck of it vereq(C.container[-1].attr, 42)