]> git.sur5r.net Git - u-boot/commit
test/py: Use range() rather than xrange()
authorPaul Burton <paul.burton@imgtec.com>
Thu, 14 Sep 2017 21:34:44 +0000 (14:34 -0700)
committerSimon Glass <sjg@chromium.org>
Tue, 10 Jul 2018 20:50:50 +0000 (14:50 -0600)
commitb8c455500a08c75c4809e523d348027e72cda7ec
tree2ed0c97c155bd3e8b342034fe3031019b9d7c051
parentdffd56d1d270e4797e43272a6c9000b8b8aeaf29
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>
test/py/u_boot_console_sandbox.py
test/py/u_boot_spawn.py
test/py/u_boot_utils.py