From: Tim Peters Date: Thu, 28 Mar 2002 21:22:25 +0000 (+0000) Subject: test_trashcan: reword obscure code. X-Git-Tag: v2.3c1~6283 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d4ce758505d08e669a4752f79294c8aa19a96cf0;p=thirdparty%2FPython%2Fcpython.git test_trashcan: reword obscure code. Bugfix candidate. --- diff --git a/Lib/test/test_gc.py b/Lib/test/test_gc.py index 33c57caf8e70..22f7e74114be 100644 --- a/Lib/test/test_gc.py +++ b/Lib/test/test_gc.py @@ -188,7 +188,7 @@ def test_trashcan(): gc.enable() N = 200 - for i in range(3): + for count in range(3): t = [] for i in range(N): t = [t, Ouch()]