mirror of
https://github.com/python/cpython.git
synced 2025-12-23 09:19:18 +00:00
Fix SF #1345263, colorsys tests, bug in frange
Fix a typo that caused step to be ignored. Will backport.
This commit is contained in:
parent
6eac2005bf
commit
cf4863831c
2 changed files with 2 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ import colorsys
|
|||
def frange(start, stop, step):
|
||||
while start <= stop:
|
||||
yield start
|
||||
start += stop
|
||||
start += step
|
||||
|
||||
class ColorsysTest(unittest.TestCase):
|
||||
|
||||
|
|
|
|||
|
|
@ -271,6 +271,7 @@ Chris Hoffman
|
|||
Albert Hofkamp
|
||||
Jonathan Hogg
|
||||
Gerrit Holl
|
||||
Rune Holm
|
||||
Philip Homburg
|
||||
Naofumi Honda
|
||||
Jeffrey Honig
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue