mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Another 2.6-ism in test file
This commit is contained in:
parent
2f9d4d1e16
commit
0a665ce9f7
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue