diff options
author | Dino Viehland <dinoviehland@gmail.com> | 2024-05-31 07:49:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-31 07:49:03 (GMT) |
commit | 0d07182821fad7b95a043d006f1ce13a2d22edcb (patch) | |
tree | dd51773d847f35d791bb9436352d39500845f288 /Doc | |
parent | 13a5fdc72f701c053b96abea48cd8f2775e9418e (diff) | |
download | cpython-0d07182821fad7b95a043d006f1ce13a2d22edcb.zip cpython-0d07182821fad7b95a043d006f1ce13a2d22edcb.tar.gz cpython-0d07182821fad7b95a043d006f1ce13a2d22edcb.tar.bz2 |
gh-111201: Support pyrepl on Windows (#119559)
Co-authored-by: Anthony Shaw <anthony.p.shaw@gmail.com>
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.13.rst | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index 241c07e..29bb3b8 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -154,10 +154,10 @@ New Features A Better Interactive Interpreter -------------------------------- -On Unix-like systems like Linux or macOS, Python now uses a new -:term:`interactive` shell. When the user starts the :term:`REPL` from an -interactive terminal, and both :mod:`curses` and :mod:`readline` are -available, the interactive shell now supports the following new features: +On Unix-like systems like Linux or macOS as well as Windows, Python now +uses a new :term:`interactive` shell. When the user starts the +:term:`REPL` from an interactive terminal the interactive shell now +supports the following new features: * Colorized prompts. * Multiline editing with history preservation. @@ -174,10 +174,13 @@ available, the interactive shell now supports the following new features: If the new interactive shell is not desired, it can be disabled via the :envvar:`PYTHON_BASIC_REPL` environment variable. +The new shell requires :mod:`curses` on Unix-like systems. + For more on interactive mode, see :ref:`tut-interac`. (Contributed by Pablo Galindo Salgado, Łukasz Langa, and -Lysandros Nikolaou in :gh:`111201` based on code from the PyPy project.) +Lysandros Nikolaou in :gh:`111201` based on code from the PyPy project. +Windows support contributed by Dino Viehland and Anthony Shaw.) .. _whatsnew313-improved-error-messages: |