Kaydet (Commit) cf486383 authored tarafından Neal Norwitz's avatar Neal Norwitz

Fix SF #1345263, colorsys tests, bug in frange

Fix a typo that caused step to be ignored.

Will backport.
üst 6eac2005
...@@ -4,7 +4,7 @@ import colorsys ...@@ -4,7 +4,7 @@ import colorsys
def frange(start, stop, step): def frange(start, stop, step):
while start <= stop: while start <= stop:
yield start yield start
start += stop start += step
class ColorsysTest(unittest.TestCase): class ColorsysTest(unittest.TestCase):
......
...@@ -271,6 +271,7 @@ Chris Hoffman ...@@ -271,6 +271,7 @@ Chris Hoffman
Albert Hofkamp Albert Hofkamp
Jonathan Hogg Jonathan Hogg
Gerrit Holl Gerrit Holl
Rune Holm
Philip Homburg Philip Homburg
Naofumi Honda Naofumi Honda
Jeffrey Honig Jeffrey Honig
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment