diff options
| author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-06-12 19:27:32 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-12 19:27:32 (GMT) |
| commit | 51724620e868512bbedb1547aca441bcd27bbe0c (patch) | |
| tree | c5c4b7f8118be02549281421c736543998bdf349 /Lib/pydoc.py | |
| parent | 7c6b3429b631d80de0348e5ddc2a3a8125e5c00d (diff) | |
| download | cpython-51724620e868512bbedb1547aca441bcd27bbe0c.zip cpython-51724620e868512bbedb1547aca441bcd27bbe0c.tar.gz cpython-51724620e868512bbedb1547aca441bcd27bbe0c.tar.bz2 | |
[3.13] gh-120417: Remove unused imports in the stdlib (GH-120420) (#120429)
gh-120417: Remove unused imports in the stdlib (GH-120420)
(cherry picked from commit 4c6d4f5cb33e48519922d635894eef356faddba2)
Co-authored-by: Victor Stinner <vstinner@python.org>
Diffstat (limited to 'Lib/pydoc.py')
| -rwxr-xr-x | Lib/pydoc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pydoc.py b/Lib/pydoc.py index cd890a7..085f8ed 100755 --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -76,7 +76,7 @@ from collections import deque from reprlib import Repr from traceback import format_exception_only -from _pyrepl.pager import (get_pager, plain, escape_less, pipe_pager, +from _pyrepl.pager import (get_pager, plain, pipe_pager, plain_pager, tempfile_pager, tty_pager) |
