From cf4863831c729a105d31c26af14909c16f6bdbd9 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Wed, 2 Nov 2005 05:54:27 +0000 Subject: Fix SF #1345263, colorsys tests, bug in frange Fix a typo that caused step to be ignored. Will backport. --- 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 b95902a..72ed346 100644 --- a/Misc/ACKS +++ b/Misc/ACKS @@ -271,6 +271,7 @@ Chris Hoffman Albert Hofkamp Jonathan Hogg Gerrit Holl +Rune Holm Philip Homburg Naofumi Honda Jeffrey Honig -- cgit v0.12