diff options
author | Tim Peters <tim.peters@gmail.com> | 2002-03-28 21:22:25 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2002-03-28 21:22:25 (GMT) |
commit | d4ce758505d08e669a4752f79294c8aa19a96cf0 (patch) | |
tree | 041387b821a2c4bd4d7e16c899567272e47bdbcc /Lib/test/test_gc.py | |
parent | d222559cdb51b0149462f927c6aa0889915e684f (diff) | |
download | cpython-d4ce758505d08e669a4752f79294c8aa19a96cf0.zip cpython-d4ce758505d08e669a4752f79294c8aa19a96cf0.tar.gz cpython-d4ce758505d08e669a4752f79294c8aa19a96cf0.tar.bz2 |
test_trashcan: reword obscure code.
Bugfix candidate.
Diffstat (limited to 'Lib/test/test_gc.py')
-rw-r--r-- | Lib/test/test_gc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_gc.py b/Lib/test/test_gc.py index 33c57ca..22f7e74 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()] |