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)
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

index 9c4dfd02a0f9387323355de7101733257b7847fe..ca022bcbb0321ef92cda03de4251a8ad4c6483bb 100644 (file)
@@ -136,7 +136,7 @@ static const struct string_map_entry string_map_entries[] = {
 /* Hash table stats:
  * size ${len(strmap.sorted_strings)} entries
  * collisions entries:
-% for i in xrange(10):
+% for i in range(10):
  *     ${i}${'+' if i == 9 else ' '}     ${strmap.collisions[i]}
 % endfor
  */
index c6e1c564e6d918380b669699997e7024d7e8207a..8ad54464cb8fc1178786ec1e40adf81d551880d5 100644 (file)
@@ -216,7 +216,7 @@ class Group(object):
             first_byte = field.start // 8
             last_byte = field.end // 8
 
-            for b in xrange(first_byte, last_byte + 1):
+            for b in range(first_byte, last_byte + 1):
                 if not b in bytes:
                     bytes[b] = self.Byte()
 
index b3dac3da3f77e9db55bb96a277cd3581272e71e4..16b98690a6dbb27986d6dc0cd1bff541a26ca3a8 100644 (file)
@@ -116,7 +116,7 @@ constant_template_common = mako.template.Template("""\
 constant_template_vector_scalar = mako.template.Template("""\
    case ${op.get_enum_name()}:
     % if "mixed" in op.flags:
-        % for i in xrange(op.num_operands):
+        % for i in range(op.num_operands):
       assert(op[${i}]->type->base_type == ${op.source_types[0].glsl_type} ||
             % for src_type in op.source_types[1:-1]:
              op[${i}]->type->base_type == ${src_type.glsl_type} ||
index 3c3316dcaa89252c536cc427fff1f5a89073b1dd..b03c5da2eae6386df7612bc1249af66c96753121 100644 (file)
@@ -367,8 +367,8 @@ for (unsigned bit = 0; bit < bit_size; bit++) {
 """)
 
 
-for i in xrange(1, 5):
-   for j in xrange(1, 5):
+for i in range(1, 5):
+   for j in range(1, 5):
       unop_horiz("fnoise{0}_{1}".format(i, j), i, tfloat, j, tfloat, "0.0f")
 
 
index 8a3733649618557a9246afda6db24d814a4fd8da..5e2cd0740ae18b178dd678da2ad08a9e96881d97 100644 (file)
@@ -145,7 +145,7 @@ static const struct string_map_entry string_map_entries[] = {
 /* Hash table stats:
  * size ${len(strmap.sorted_strings)} entries
  * collisions entries:
-% for i in xrange(10):
+% for i in range(10):
  *     ${i}${'+' if i == 9 else ' '}     ${strmap.collisions[i]}
 % endfor
  */
index fba2f0cc1e833f45b4c19c19aaff02354f0dcad7..a920ecc012f3ac86f966dddee9106f8a90b03e0c 100644 (file)
@@ -392,7 +392,7 @@ static const struct proc_pair
    _glapi_proc proc;
 } proc_pairs[%d] = {""" % len(procs))
         names = sorted(procs.keys())
-        for i in xrange(len(names)):
+        for i in range(len(names)):
             comma = ',' if i < len(names) - 1 else ''
             print('   { "%s", (_glapi_proc) gl%s }%s' % (names[i], procs[names[i]], comma))
         print("""};
index 49206b11671f2d3370824b10f50e76cee16d1386..9d8923cf8dbdb85b60274e450d6759852e2f653c 100644 (file)
@@ -216,13 +216,13 @@ class PrintCode(gl_XML.gl_print_base):
 
         # Check that the table has no gaps.  We expect a function at every offset,
         # and the code which generates the table relies on this.
-        for i in xrange(0, func_count):
+        for i in range(0, func_count):
             if funcnames[i] is None:
                 raise Exception("Function table has no function at offset %d" % (i))
 
         print("#define GLAPI_TABLE_COUNT %d" % func_count)
         print("static const char * const _glapi_table_func_names[GLAPI_TABLE_COUNT] = {")
-        for i in xrange(0, func_count):
+        for i in range(0, func_count):
             print("    /* %5d */ \"%s\"," % (i, funcnames[i]))
         print("};")
 
index 826721479d546ddd7ced71ac7705e5fb6058b4b8..be1d15d9224e1592abc76dab736ac56e1dcfb982 100644 (file)
@@ -260,7 +260,7 @@ def abi_sanity_check(entries):
     all_names = []
     last_slot = entries[-1].slot
     i = 0
-    for slot in xrange(last_slot + 1):
+    for slot in range(last_slot + 1):
         if entries[i].slot != slot:
             raise Exception('entries are not ordered by slots')
         if entries[i].alias:
index 4c36c3cee28124e38aa5cf4a2263c3aaf8f61f42..3321ad33ffa19772a2d0b95606d22ee5edefeeba 100644 (file)
@@ -216,8 +216,8 @@ class Swizzle:
       component, exactly as you would expect.
       """
       rev = [Swizzle.SWIZZLE_NONE] * 4
-      for i in xrange(4):
-         for j in xrange(4):
+      for i in range(4):
+         for j in range(4):
             if self.__list[j] == i and rev[i] == Swizzle.SWIZZLE_NONE:
                rev[i] = j
       return Swizzle(rev)