Comment 2 for bug 1664158

Revision history for this message
ash (sersorrel) wrote :

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.