Current Path : /proc/thread-self/root/proc/thread-self/root/proc/self/root/opt/cloudlinux/venv/lib64/python3.11/site-packages/testfixtures/ |
Current File : //proc/thread-self/root/proc/thread-self/root/proc/self/root/opt/cloudlinux/venv/lib64/python3.11/site-packages/testfixtures/compat.py |
# compatibility module for different python versions import sys from typing import Tuple PY_VERSION: Tuple[int, int] = sys.version_info[:2] PY_37_PLUS: bool = PY_VERSION >= (3, 7) PY_310_PLUS: bool = PY_VERSION >= (3, 10)