From 3e063170d7b0cbd3aeef31cdc7339217b4f78145 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych Date: Fri, 6 Jun 2025 15:38:12 +0100 Subject: [PATCH] Remove duplicate import --- Lib/pydoc.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Lib/pydoc.py b/Lib/pydoc.py index 7528178fdcae97..d508fb70ea429e 100644 --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -1812,7 +1812,6 @@ def writedocs(dir, pkgpath='', done=None): def _introdoc(): - import textwrap ver = '%d.%d' % sys.version_info[:2] if os.environ.get('PYTHON_BASIC_REPL'): pyrepl_keys = '' @@ -2170,7 +2169,6 @@ def showtopic(self, topic, more_xrefs=''): if more_xrefs: xrefs = (xrefs or '') + ' ' + more_xrefs if xrefs: - import textwrap text = 'Related help topics: ' + ', '.join(xrefs.split()) + '\n' wrapped_text = textwrap.wrap(text, 72) doc += '\n%s\n' % '\n'.join(wrapped_text)