We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e866e2f commit 5754eb2Copy full SHA for 5754eb2
1 file changed
Doc/library/readline.rst
@@ -7,11 +7,6 @@
7
8
.. sectionauthor:: Skip Montanaro <skip.montanaro@gmail.com>
9
10
-.. note::
11
- The new :term:`REPL` introduced in version 3.13 doesn't support readline.
12
- However, readline can still be used by setting the :envvar:`PYTHON_BASIC_REPL`
13
- environment variable.
14
-
15
--------------
16
17
The :mod:`readline` module defines a number of functions to facilitate
@@ -399,3 +394,7 @@ support history save/restore. ::
399
394
def save_history(self, histfile):
400
395
readline.set_history_length(1000)
401
396
readline.write_history_file(histfile)
397
+
398
+The new :term:`REPL` introduced in version 3.13 doesn't support readline.
+However, readline can still be used by setting the :envvar:`PYTHON_BASIC_REPL`
+environment variable.
0 commit comments