summaryrefslogtreecommitdiff
path: root/test/py/u_boot_spawn.py
diff options
context:
space:
mode:
authorPaul Burton <paul.burton@imgtec.com>2017-09-15 00:34:44 +0300
committerSimon Glass <sjg@chromium.org>2018-07-10 23:50:50 +0300
commitb8c455500a08c75c4809e523d348027e72cda7ec (patch)
tree2ed0c97c155bd3e8b342034fe3031019b9d7c051 /test/py/u_boot_spawn.py
parentdffd56d1d270e4797e43272a6c9000b8b8aeaf29 (diff)
downloadu-boot-b8c455500a08c75c4809e523d348027e72cda7ec.tar.xz
test/py: Use range() rather than xrange()
In python 3.x the xrange() function has been removed, and range() returns an iterator much like Python 2.x's xrange(). Simply use range() in place of xrange() in order to work on both python 2.x & 3.x. This will mean a small cost on python 2.x since range() will return a list there rather than an iterator, but the cost should be negligible. Signed-off-by: Paul Burton <paul.burton@imgtec.com> Reviewed-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'test/py/u_boot_spawn.py')
-rw-r--r--test/py/u_boot_spawn.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/py/u_boot_spawn.py b/test/py/u_boot_spawn.py
index 77a010a33f..b011a3e3da 100644
--- a/test/py/u_boot_spawn.py
+++ b/test/py/u_boot_spawn.py
@@ -134,7 +134,7 @@ class Spawn(object):
the expected time.
"""
- for pi in xrange(len(patterns)):
+ for pi in range(len(patterns)):
if type(patterns[pi]) == type(''):
patterns[pi] = re.compile(patterns[pi])
@@ -143,7 +143,7 @@ class Spawn(object):
while True:
earliest_m = None
earliest_pi = None
- for pi in xrange(len(patterns)):
+ for pi in range(len(patterns)):
pattern = patterns[pi]
m = pattern.search(self.buf)
if not m:
@@ -198,7 +198,7 @@ class Spawn(object):
"""
os.close(self.fd)
- for i in xrange(100):
+ for i in range(100):
if not self.isalive():
break
time.sleep(0.1)