From: Neal Norwitz Date: Wed, 2 Nov 2005 06:02:24 +0000 (+0000) Subject: Backport: X-Git-Tag: v2.4.3c1~225 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=64597d00ae45eb5de405d20251c3d9d01970b1d0;p=thirdparty%2FPython%2Fcpython.git Backport: Fix SF #1345263, colorsys tests, bug in frange Fix a typo that caused step to be ignored. --- 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 0fdb79f4fe6e..7faa2c0aa5ee 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