From a5069e0e8b6282c5b57c47fb2298da8ef5cf9cd0 Mon Sep 17 00:00:00 2001 From: John Seong Date: Sun, 28 Dec 2025 16:57:55 -0800 Subject: [PATCH] gh-143048: Remove outdated curses reference in interactive mode docs The curses module dependency was removed for the new REPL in GH-136758, so the documentation should no longer mention it as a requirement. --- Doc/tutorial/appendix.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/tutorial/appendix.rst b/Doc/tutorial/appendix.rst index 5020c428741feb..f8698062d8f502 100644 --- a/Doc/tutorial/appendix.rst +++ b/Doc/tutorial/appendix.rst @@ -14,7 +14,7 @@ There are two variants of the interactive :term:`REPL`. The classic basic interpreter is supported on all platforms with minimal line control capabilities. -On Windows, or Unix-like systems with :mod:`curses` support, +On Windows and Unix-like systems, a new interactive shell is used by default since Python 3.13. This one supports color, multiline editing, history browsing, and paste mode. To disable color, see :ref:`using-on-controlling-color` for