There is a fencepost error on the sys.version_info check which will break on
Python 3.0. Reverse the logic to make py2 compatible with py3 (rather than
py3 compatible with py2) which will be more natural to follow as py2 usage
reduces.
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
Acked-by: Wei Liu <wl@xen.org>
import sys, os, re
-if (sys.version_info > (3, 0)):
- def xrange(x):
- return range(x)
+if sys.version_info < (3, 0):
+ range = xrange
class Fail(Exception):
pass
state.deep_deps[k] = featureset_to_uint32s(v, nr_entries)
# Calculate the bitfield name declarations
- for word in xrange(nr_entries):
+ for word in range(nr_entries):
names = []
- for bit in xrange(32):
+ for bit in range(32):
name = state.names.get(word * 32 + bit, "")