Use `range` instead of `xrange`
authorEnji Cooper <ngie@FreeBSD.org>
Wed, 24 Apr 2019 05:52:24 +0000 (05:52 +0000)
committerEnji Cooper <ngie@FreeBSD.org>
Wed, 24 Apr 2019 05:52:24 +0000 (05:52 +0000)
commit351a56b11664c9229e61db4c51c2a1335c15bd72
tree19100f5394aa6d0a15089c6ac044dc7b40493955
parent2a96ae15f0a3ecb1652f7cdfc64e0fd62766d670
Use `range` instead of `xrange`

`xrange` is a pre-python 2.x compatible idiom. Use `range` instead. The values
being iterated over are sufficiently small that using range on python 2.x won't
be a noticeable issue.

MFC after: 2 months
tests/sys/opencrypto/cryptodev.py