summaryrefslogtreecommitdiffstats
path: root/Lib/pydoc.py
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-06-12 19:27:32 (GMT)
committerGitHub <noreply@github.com>2024-06-12 19:27:32 (GMT)
commit51724620e868512bbedb1547aca441bcd27bbe0c (patch)
treec5c4b7f8118be02549281421c736543998bdf349 /Lib/pydoc.py
parent7c6b3429b631d80de0348e5ddc2a3a8125e5c00d (diff)
downloadcpython-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-xLib/pydoc.py2
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)