From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 20 May 2024 15:10:40 +0000 (+0200) Subject: [3.13] gh-119185: Fix typo in `_pyrepl.pager`: `tempfilepager` should be `tempfile_pa... X-Git-Tag: v3.13.0b2~187 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a52ed7e6d9c09e1e22bea50b7cf83eb2a7d165c5;p=thirdparty%2FPython%2Fcpython.git [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 05e1dce76d7669e90ab73e7e682360d83b8a0d02) Co-authored-by: Thanos <111999343+Sachaa-Thanasius@users.noreply.github.com> --- diff --git a/Lib/_pyrepl/pager.py b/Lib/_pyrepl/pager.py index af0409c4523b..1c8c1bb13925 100644 --- a/Lib/_pyrepl/pager.py +++ b/Lib/_pyrepl/pager.py @@ -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)