python: Use range() instead of xrange()
authorMathieu Bridon <bochecha@daitauha.fr>
Fri, 6 Jul 2018 10:22:18 +0000 (12:22 +0200)
committerDylan Baker <dylan@pnwbakers.com>
Tue, 24 Jul 2018 18:07:04 +0000 (11:07 -0700)
commit9ebd8372b9d98b1ffa7e80666ee367c59e128af5
tree13adc1d5c528c6f6a6ce6ca63acbad63ebce3bb1
parent022d2a381d32d24aabe2c54704a5a5e2440a75e9
python: Use range() instead of xrange()

Python 2 has a range() function which returns a list, and an xrange()
one which returns an iterator.

Python 3 lost the function returning a list, and renamed the function
returning an iterator as range().

As a result, using range() makes the scripts compatible with both Python
versions 2 and 3.

Signed-off-by: Mathieu Bridon <bochecha@daitauha.fr>
Reviewed-by: Eric Engestrom <eric.engestrom@intel.com>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
src/amd/vulkan/radv_entrypoints_gen.py
src/broadcom/cle/gen_pack_header.py
src/compiler/glsl/ir_expression_operation.py
src/compiler/nir/nir_opcodes.py
src/intel/vulkan/anv_entrypoints_gen.py
src/mapi/glapi/gen/glX_proto_send.py
src/mapi/glapi/gen/gl_gentable.py
src/mapi/mapi_abi.py
src/mesa/main/format_parser.py