diff options
Diffstat (limited to 'Lib/test/test_dummy_thread.py')
| -rw-r--r-- | Lib/test/test_dummy_thread.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_dummy_thread.py b/Lib/test/test_dummy_thread.py index 288b6218c2..07466cea0b 100644 --- a/Lib/test/test_dummy_thread.py +++ b/Lib/test/test_dummy_thread.py @@ -153,7 +153,7 @@ class ThreadTests(unittest.TestCase):              print()              print("*** Testing multiple thread creation "\              "(will take approx. %s to %s sec.) ***" % (DELAY, thread_count)) -        for count in xrange(thread_count): +        for count in range(thread_count):              if DELAY:                  local_delay = round(random.random(), 1)              else:  | 
