summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-03-20 01:02:48 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-03-20 01:02:48 (GMT)
commit0a665ce9f741ac8eac422ad56f63935727c96abf (patch)
treee7d7e9ff597e6f7979a2fcb4922b16215c3c3381 /Lib
parent2f9d4d1e1684dbaf352bea9eb62dbf7df2a42227 (diff)
downloadcpython-0a665ce9f741ac8eac422ad56f63935727c96abf.zip
cpython-0a665ce9f741ac8eac422ad56f63935727c96abf.tar.gz
cpython-0a665ce9f741ac8eac422ad56f63935727c96abf.tar.bz2
Another 2.6-ism in test file
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_winsound.py2
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):