identity780%python.module
fault.system

Collection of identifiers that represent the host system's implementation.

Primarily, this provides information about the Root Execution Context in addition to information regarding the host Python importing the module.

The identifiers are intended to be wholly symbolic; versions should only be employed in certain contexts where the distinctions are understood by the administrator providing FCI_SYSTEM and FCI_ARCHITECTURE overrides.

sys
import

_python_architecture0
data

_python_architecture = sys.implementation.name + ''.join(map(str, sys.version_info[:2]))
_python_architecture = _python_architecture.replace('-', '')

fci_system_envid0
data

fci_system_envid = 'FCI_SYSTEM'

fci_architecture_envid0
data

fci_architecture_envid = 'FCI_ARCHITECTURE'

_uname50%
function

_uname(flag)

Execute the uname returning its output for the given flag.

_cache288%
function

_cache()

root_execution_context0
function

root_execution_context()

Return the (operating system, architecture) pair identifying the Root Execution Context.

python_execution_context0
function

python_execution_context()

Return the Python execution Context identification. Used to select marshalled code objects(bytecode).