That's probably not the correct fix: `range(...)` in Python 2 is equivalent to `list(range(...))` in Python 3, so those lines should probably be
) = list(range(1, 10)) + [0x80]
and
) = list(range(0, 5)) + [2]
instead.
That's probably not the correct fix: `range(...)` in Python 2 is equivalent to `list(range(...))` in Python 3, so those lines should probably be
) = list(range(1, 10)) + [0x80]
and
) = list(range(0, 5)) + [2]
instead.