commit | 7cb6f2fe109f0231c4b11de03d2d5d96ca656f4d | [log] [tgz] |
---|---|---|
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | Sun Jul 04 17:47:30 2010 +0000 |
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | Sun Jul 04 17:47:30 2010 +0000 |
tree | 5085ee30313408d7d27f8b386928c2f0ca02cd0d | |
parent | 06360405dc33e0a33b1a5ec4042df19cb20d8bbc [diff] [blame] |
Fixed the test
diff --git a/Demo/classes/Range.py b/Demo/classes/Range.py index a0cef74..4e6f45d 100644 --- a/Demo/classes/Range.py +++ b/Demo/classes/Range.py
@@ -66,7 +66,7 @@ def test(): import time, builtins #Just a quick sanity check - correct_result = builtins.range(5, 100, 3) + correct_result = list(builtins.range(5, 100, 3)) oldrange_result = list(oldrange(5, 100, 3)) genrange_result = list(genrange(5, 100, 3)) if genrange_result != correct_result or oldrange_result != correct_result: