diff options
Diffstat (limited to 'Lib')
| -rw-r--r-- | Lib/test/test_colorsys.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |
