diff --git a/stdlib/code.pyi b/stdlib/code.pyi index 0b13c8a5016d..478d5aaa320f 100644 --- a/stdlib/code.pyi +++ b/stdlib/code.pyi @@ -24,6 +24,7 @@ class InteractiveConsole(InteractiveInterpreter): buffer: list[str] # undocumented filename: str # undocumented if sys.version_info >= (3, 13): + local_exit: bool # undocumented def __init__( self, locals: dict[str, Any] | None = None, filename: str = "", *, local_exit: bool = False ) -> None: ...