diff options
author | Petr Viktorin <encukou@gmail.com> | 2024-07-19 13:52:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-19 13:52:00 (GMT) |
commit | 709db44255eb5d73fc22a1341dd0253e71ddfda9 (patch) | |
tree | ac52a41b149962a25a7dd5937c128d04feb577c5 | |
parent | 22c9d9c1fcc3bb6186524330b169eda6df450f1b (diff) | |
download | cpython-709db44255eb5d73fc22a1341dd0253e71ddfda9.zip cpython-709db44255eb5d73fc22a1341dd0253e71ddfda9.tar.gz cpython-709db44255eb5d73fc22a1341dd0253e71ddfda9.tar.bz2 |
gh-121160: Note that readline libraries using different history formats. (GH-121327)
This is not something we can do too much about, without help from the
underlying libraries.
-rw-r--r-- | Doc/library/readline.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/readline.rst b/Doc/library/readline.rst index 5658b93..d03b715 100644 --- a/Doc/library/readline.rst +++ b/Doc/library/readline.rst @@ -45,6 +45,10 @@ Readline library in general. python:bind -v python:bind ^I rl_complete + Also note that different libraries may use different history file formats. + When switching the underlying library, existing history files may become + unusable. + .. data:: backend The name of the underlying Readline library being used, either |