summaryrefslogtreecommitdiffstats
path: root/Lib/_pyrepl/historical_reader.py
Commit message (Collapse)AuthorAgeFilesLines
* gh-124027: Support Del, PgUp, and PgDn on TERM=vt100 (#124028)Miro Hrončok2024-09-131-0/+2
| | | | | | | | | | | pyrepl: Support Del, PgUp, and PgDn on TERM=vt100 From Fedora's /etc/inputrc: "\e[5~": history-search-backward "\e[6~": history-search-forward "\e[3~": delete-char Fixes https://github.com/python/cpython/issues/124027
* gh-119034, REPL: Change page up/down keys to search in history (#123607)Victor Stinner2024-09-061-2/+69
| | | | | | Change <page up> and <page down> keys of the Python REPL to history search forward/backward. Co-authored-by: Łukasz Langa <lukasz@langa.pl>
* gh-121499: Fix multi-line history rendering in the REPL (#121531)Pablo Galindo Salgado2024-07-131-0/+1
| | | Signed-off-by: Pablo Galindo <pablogsal@gmail.com>
* gh-120417: Remove unused imports in the stdlib (#120420)Victor Stinner2024-06-121-1/+1
|
* gh-118911: Trailing whitespace in a block shouldn't prevent the user from ↵Aya Elsayed2024-05-221-1/+1
| | | | | terminating the code block (#119355) Co-authored-by: Łukasz Langa <lukasz@langa.pl>
* gh-111201: A new Python REPL (GH-111567)Pablo Galindo Salgado2024-05-051-0/+345
Co-authored-by: Łukasz Langa <lukasz@langa.pl> Co-authored-by: Marta Gómez Macías <mgmacias@google.com> Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com> Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>