mirror of
https://github.com/python/cpython.git
synced 2025-07-29 14:15:07 +00:00
[3.13] gh-119185: Fix typo in _pyrepl.pager
: tempfilepager
should be tempfile_pager
(GH-118881) (#119211)
Fix typo in `_pyrepl.pager`: `tempfilepager` should be `tempfile_pager`
The name with no underscore doesn't exist.
(cherry picked from commit 05e1dce76d
)
Co-authored-by: Thanos <111999343+Sachaa-Thanasius@users.noreply.github.com>
This commit is contained in:
parent
cbf064b096
commit
a52ed7e6d9
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ def get_pager() -> Pager:
|
|||
if os.environ.get('TERM') in ('dumb', 'emacs'):
|
||||
return plain_pager
|
||||
if sys.platform == 'win32':
|
||||
return lambda text, title='': tempfilepager(plain(text), 'more <')
|
||||
return lambda text, title='': tempfile_pager(plain(text), 'more <')
|
||||
if hasattr(os, 'system') and os.system('(less) 2>/dev/null') == 0:
|
||||
return lambda text, title='': pipe_pager(text, 'less', title)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue