From: Neal Norwitz Date: Wed, 2 Nov 2005 05:54:27 +0000 (+0000) Subject: Fix SF #1345263, colorsys tests, bug in frange X-Git-Tag: v2.5a0~1202 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cf4863831c729a105d31c26af14909c16f6bdbd9;p=thirdparty%2FPython%2Fcpython.git Fix SF #1345263, colorsys tests, bug in frange Fix a typo that caused step to be ignored. Will backport. --- diff --git a/Lib/test/test_colorsys.py b/Lib/test/test_colorsys.py index 1ef7b0cdfc70..a8cd885db125 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 b95902abb7a5..72ed346fc57e 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