Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32.4k
gh-119185: Fix typo in_pyrepl.pager
:tempfilepager
should betempfile_pager
#118881
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
The name with no underscore doesn't exist.
ghost commentedMay 10, 2024 • edited by ghost
Loading Uh oh!
There was an error while loading.Please reload this page.
edited by ghost
Uh oh!
There was an error while loading.Please reload this page.
Most changes to Pythonrequire a NEWS entry. Add one using theblurb_it web app or theblurb command-line tool. If this change has little impact on Python users, wait for a maintainer to apply the |
Most changes to Pythonrequire a NEWS entry. Add one using theblurb_it web app or theblurb command-line tool. If this change has little impact on Python users, wait for a maintainer to apply the |
Most changes to Pythonrequire a NEWS entry. Add one using theblurb_it web app or theblurb command-line tool. If this change has little impact on Python users, wait for a maintainer to apply the |
_pyrepl.pager
:tempfilepager
should betempfile_pager
_pyrepl.pager
:tempfilepager
should betempfile_pager
Thanks@Sachaa-Thanasius for the PR, and@JelleZijlstra for merging it 🌮🎉.. I'm working now to backport this PR to: 3.13. |
…be `tempfile_pager` (pythonGH-118881)Fix typo in `_pyrepl.pager`: `tempfilepager` should be `tempfile_pager`The name with no underscore doesn't exist.(cherry picked from commit05e1dce)Co-authored-by: Thanos <111999343+Sachaa-Thanasius@users.noreply.github.com>
GH-119211 is a backport of this pull request to the3.13 branch. |
…be `tempfile_pager` (python#118881)Fix typo in `_pyrepl.pager`: `tempfilepager` should be `tempfile_pager`The name with no underscore doesn't exist.
Uh oh!
There was an error while loading.Please reload this page.
The function name has an underscore. Without this, calling help can cause an exception.
Should be reproducible by calling
help()
in the repl on Windows. I personally found it by calling it onsysconfig.get_config_var
.Doesn’t seem worthy of a news entry.