From e733dc90f305441a5654d862da1e79b7d4fe889e Mon Sep 17 00:00:00 2001 From: Semyon Moroz Date: Fri, 31 Oct 2025 14:16:32 +0400 Subject: [PATCH] gh-131885: Document `*` for `code.InteractiveConsole` (#132029) --- Doc/library/code.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/code.rst b/Doc/library/code.rst index 52587c4dd8f8..59c016d21501 100644 --- a/Doc/library/code.rst +++ b/Doc/library/code.rst @@ -29,7 +29,7 @@ build applications which provide an interactive interpreter prompt. module. -.. class:: InteractiveConsole(locals=None, filename="", local_exit=False) +.. class:: InteractiveConsole(locals=None, filename="", *, local_exit=False) Closely emulate the behavior of the interactive Python interpreter. This class builds on :class:`InteractiveInterpreter` and adds prompting using the familiar -- 2.47.3