summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_io.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/lib/tests/test_io.py')
-rw-r--r--numpy/lib/tests/test_io.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/tests/test_io.py b/numpy/lib/tests/test_io.py
index 9144138d1..ba28cf73a 100644
--- a/numpy/lib/tests/test_io.py
+++ b/numpy/lib/tests/test_io.py
@@ -160,7 +160,7 @@ class TestSavezLoad(RoundtripTest, TestCase):
errors = []
threads = [threading.Thread(target=writer, args=(errors,))
- for j in xrange(3)]
+ for j in range(3)]
for t in threads:
t.start()
for t in threads: