<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">import sys
PY3 = sys.version_info[0] == 3

if PY3:
    def int_from_byte(b):
        return b
else:
    int_from_byte = ord
</pre></body></html>