You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/lib/ansible_test/_util/target/tools/virtualenvcheck.py

21 lines
465 B
Python

"""Detect the real python interpreter when running in a virtual environment created by the 'virtualenv' module."""
from __future__ import annotations
import json
try:
# virtualenv <20
from sys import real_prefix
except ImportError:
real_prefix = None
try:
# venv and virtualenv >= 20
from sys import base_exec_prefix
except ImportError:
base_exec_prefix = None
print(json.dumps(dict(
real_prefix=real_prefix or base_exec_prefix,
)))