diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-03-20 01:02:48 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-03-20 01:02:48 (GMT) |
commit | 0a665ce9f741ac8eac422ad56f63935727c96abf (patch) | |
tree | e7d7e9ff597e6f7979a2fcb4922b16215c3c3381 /Lib/test/test_winsound.py | |
parent | 2f9d4d1e1684dbaf352bea9eb62dbf7df2a42227 (diff) | |
download | cpython-0a665ce9f741ac8eac422ad56f63935727c96abf.zip cpython-0a665ce9f741ac8eac422ad56f63935727c96abf.tar.gz cpython-0a665ce9f741ac8eac422ad56f63935727c96abf.tar.bz2 |
Another 2.6-ism in test file
Diffstat (limited to 'Lib/test/test_winsound.py')
-rw-r--r-- | Lib/test/test_winsound.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ class BeepTest(unittest.TestCase): 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): |