# coding: utf-8 # AUTO-GENERATED FILE -- DO NOT EDIT """ This module provides primitive operations to manage Python interpreters. The 'interpreters' module provides a more convenient interface. """ class InterpreterID(object): """ A interpreter ID identifies a interpreter and may be used as an int. """ pass class RunFailedError(RuntimeError): pass __doc__ = """This module provides primitive operations to manage Python interpreters. The 'interpreters' module provides a more convenient interface.""" __file__ = '/home/shared/src/ide/build-files/build-temp/runtimes-release/__os__/linux-arm64/runtime-python3.12/lib/python3.12/lib-dynload/_xxsubinterpreters.cpython-312-aarch64-linux-gnu.so' __loader__ = None __name__ = '_xxsubinterpreters' __package__ = '' __spec__ = None def create(): """ create() -> ID Create a new interpreter and return a unique generated ID. """ return None def destroy(id): """ destroy(id) Destroy the identified interpreter. Attempting to destroy the current interpreter results in a RuntimeError. So does an unrecognized ID. """ pass def get_current(): """ get_current() -> ID Return the ID of current interpreter. """ return None def get_main(): """ get_main() -> ID Return the ID of main interpreter. """ return None def is_running(id): """ is_running(id) -> bool Return whether or not the identified interpreter is running. """ return None def is_shareable(obj): """ is_shareable(obj) -> bool Return True if the object's data may be shared between interpreters and False otherwise. """ return None def list_all(): """ list_all() -> [ID] Return a list containing the ID of every existing interpreter. """ return [None] def run_string(id, script, shared): """ run_string(id, script, shared) Execute the provided string in the identified interpreter. See PyRun_SimpleStrings. """ pass