GAL / Backend /interpreter /__init__.py
Clarkoer's picture
add comments ehehe
e6b283b
Raw
History Blame Contribute Delete
484 Bytes
# AUTO: Imports names from another module.
from .interpreter import Interpreter # noqa: F401
# AUTO: Imports names from another module.
from .errors import ( # noqa: F401 - convenience re-exports
# AUTO: Executes this statement.
InterpreterError,
# AUTO: Executes this statement.
_CancelledError,
# AUTO: Executes this statement.
InterpreterInputRequest,
# AUTO: Executes this statement.
ReturnValue,
# AUTO: Closes the current grouped code/data.
)