From 64597d00ae45eb5de405d20251c3d9d01970b1d0 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Wed, 2 Nov 2005 06:02:24 +0000 Subject: Backport: Fix SF #1345263, colorsys tests, bug in frange Fix a typo that caused step to be ignored. --- Lib/test/test_colorsys.py | 2 +- Misc/ACKS | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Lib/test/test_colorsys.py b/Lib/test/test_colorsys.py index 1ef7b0c..a8cd885 100644 --- a/Lib/test/test_colorsys.py +++ b/Lib/test/test_colorsys.py @@ -4,7 +4,7 @@ import colorsys def frange(start, stop, step): while start <= stop: yield start - start += stop + start += step class ColorsysTest(unittest.TestCase): diff --git a/Misc/ACKS b/Misc/ACKS index 0fdb79f..7faa2c0 100644 --- a/Misc/ACKS +++ b/Misc/ACKS @@ -268,6 +268,7 @@ Chris Hoffman Albert Hofkamp Jonathan Hogg Gerrit Holl +Rune Holm Philip Homburg Naofumi Honda Jeffrey Honig -- cgit v0.12