solorice/vscodium/extensions/ms-python.python-2022.4.1/pythonFiles/interpreterInfo.py
2022-04-28 21:17:01 +03:00

14 lines
296 B
Python

# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import json
import sys
obj = {}
obj["versionInfo"] = tuple(sys.version_info)
obj["sysPrefix"] = sys.prefix
obj["sysVersion"] = sys.version
obj["is64Bit"] = sys.maxsize > 2**32
print(json.dumps(obj))