]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Repaired optimistic comment in new test.
authorTim Peters <tim.peters@gmail.com>
Thu, 11 Jul 2002 07:11:13 +0000 (07:11 +0000)
committerTim Peters <tim.peters@gmail.com>
Thu, 11 Jul 2002 07:11:13 +0000 (07:11 +0000)
Lib/test/test_descr.py

index cd8911df6ce34fd0fc5f65a526257cfc8f74a15c..bbdcc0935efce37e25aab0434cf38de7e3709a21 100644 (file)
@@ -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)