summaryrefslogtreecommitdiffstats
path: root/Lib/_pyrepl/pager.py
Commit message (Collapse)AuthorAgeFilesLines
* Support the "pager" binary in _pyrepl (#122878)Stefano Rivera2024-09-191-0/+2
| | | | | | | | | Debian (and derivatives) provide a /usr/bin/pager binary, managed by the alternatives system, that always points to an available pager utility. Allow _pyrepl to use it, to follow system policy. This is a very trivial change, from a patch that Debian has been carrying since 2.7 era. Seems appropriate to upstream. https://bugs.debian.org/799555
* gh-120417: Remove unused imports in the stdlib (#120420)Victor Stinner2024-06-121-1/+1
|
* gh-119185: Fix typo in `_pyrepl.pager`: `tempfilepager` should be ↵Thanos2024-05-201-1/+1
| | | | | | | `tempfile_pager` (#118881) Fix typo in `_pyrepl.pager`: `tempfilepager` should be `tempfile_pager` The name with no underscore doesn't exist.
* Improve `pyrepl` type-annotation coverage (#119081)Alex Waygood2024-05-171-2/+6
|
* fix typo in `_pyrepl.pager`: `plainpager` -> `plain_pager` (#118675)denballakh2024-05-061-1/+1
|
* gh-111201: A new Python REPL (GH-111567)Pablo Galindo Salgado2024-05-051-0/+169
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>