From af48f39a440a5c23d89508c038da5d560e74fe48 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Thu, 19 Jun 2025 15:04:46 +0200 Subject: [PATCH] [3.13] Docs: Emphasize parameter name in `pkgutil.iter_importers` (GH-135597) (GH-135711) Docs: Emphasize parameter name in `pkgutil.iter_importers` (GH-135597) (cherry picked from commit ff639af8eee11e7ca09999b2724bc10652a00e5d) Co-authored-by: Rafael Fontenelle --- Doc/library/pkgutil.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/pkgutil.rst b/Doc/library/pkgutil.rst index 4a39d53a5f14..b17a317244da 100644 --- a/Doc/library/pkgutil.rst +++ b/Doc/library/pkgutil.rst @@ -109,8 +109,8 @@ support. Yield :term:`finder` objects for the given module name. - If fullname contains a ``'.'``, the finders will be for the package - containing fullname, otherwise they will be all registered top level + If *fullname* contains a ``'.'``, the finders will be for the package + containing *fullname*, otherwise they will be all registered top level finders (i.e. those on both :data:`sys.meta_path` and :data:`sys.path_hooks`). If the named module is in a package, that package is imported as a side -- 2.47.3