summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2002-03-28 21:22:25 (GMT)
committerTim Peters <tim.peters@gmail.com>2002-03-28 21:22:25 (GMT)
commitd4ce758505d08e669a4752f79294c8aa19a96cf0 (patch)
tree041387b821a2c4bd4d7e16c899567272e47bdbcc /Lib
parentd222559cdb51b0149462f927c6aa0889915e684f (diff)
downloadcpython-d4ce758505d08e669a4752f79294c8aa19a96cf0.zip
cpython-d4ce758505d08e669a4752f79294c8aa19a96cf0.tar.gz
cpython-d4ce758505d08e669a4752f79294c8aa19a96cf0.tar.bz2
test_trashcan: reword obscure code.
Bugfix candidate.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_gc.py2
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()]