commit | 0a665ce9f741ac8eac422ad56f63935727c96abf | [log] [tgz] |
---|---|---|
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | Thu Mar 20 01:02:48 2008 +0000 |
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | Thu Mar 20 01:02:48 2008 +0000 |
tree | e7d7e9ff597e6f7979a2fcb4922b16215c3c3381 | |
parent | 2f9d4d1e1684dbaf352bea9eb62dbf7df2a42227 [diff] [blame] |
Another 2.6-ism in test file
diff --git a/Lib/test/test_winsound.py b/Lib/test/test_winsound.py index dac569c..bc21d7e 100644 --- a/Lib/test/test_winsound.py +++ b/Lib/test/test_winsound.py
@@ -27,7 +27,7 @@ self._beep(32767, 75) def test_increasingfrequency(self): - for i in xrange(100, 2000, 100): + for i in range(100, 2000, 100): self._beep(i, 75) def _beep(self, *args):