You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
536 B
31 lines
536 B
1 year ago
|
"""
|
||
|
_constants
|
||
|
======
|
||
|
|
||
|
Constants relevant for the Python implementation.
|
||
|
"""
|
||
|
|
||
|
from __future__ import annotations
|
||
|
|
||
|
import platform
|
||
|
import sys
|
||
|
import sysconfig
|
||
|
|
||
|
IS64 = sys.maxsize > 2**32
|
||
|
|
||
|
PY310 = sys.version_info >= (3, 10)
|
||
|
PY311 = sys.version_info >= (3, 11)
|
||
|
PY312 = sys.version_info >= (3, 12)
|
||
|
PYPY = platform.python_implementation() == "PyPy"
|
||
|
ISMUSL = "musl" in (sysconfig.get_config_var("HOST_GNU_TYPE") or "")
|
||
|
REF_COUNT = 2 if PY311 else 3
|
||
|
|
||
|
__all__ = [
|
||
|
"IS64",
|
||
|
"ISMUSL",
|
||
|
"PY310",
|
||
|
"PY311",
|
||
|
"PY312",
|
||
|
"PYPY",
|
||
|
]
|