<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"># Python 2 / Python 3 compatibility helpers.
# SPDX-License-Identifier: MIT

import sys

is_py3 = (sys.version_info.major == 3)
is_py2 = not is_py3
</pre></body></html>