5 LINUX = sys.platform.startswith(
"linux")
6 MACOS = sys.platform.startswith(
"darwin")
7 WIN = sys.platform.startswith(
"win32")
or sys.platform.startswith(
"cygwin")
9 CPYTHON = platform.python_implementation() ==
"CPython" 10 PYPY = platform.python_implementation() ==
"PyPy" 12 PY2 = sys.version_info.major == 2