From: Victor Stinner Date: Wed, 12 Mar 2025 14:03:36 +0000 (+0100) Subject: gh-131152, pkgutil: Remove unused imports (#131149) X-Git-Tag: v3.14.0a6~60 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=14aed5e8abb84018cf48ebd1dd2ccc483013a005;p=thirdparty%2FPython%2Fcpython.git gh-131152, pkgutil: Remove unused imports (#131149) --- diff --git a/Lib/pkgutil.py b/Lib/pkgutil.py index b84d72f2395d..8772a66791a3 100644 --- a/Lib/pkgutil.py +++ b/Lib/pkgutil.py @@ -8,8 +8,6 @@ import importlib.machinery import os import os.path import sys -from types import ModuleType -import warnings __all__ = [ 'get_importer', 'iter_importers',