From c6c95108bfd56635ecdef78b8b66243eec04e9a8 Mon Sep 17 00:00:00 2001 From: 180909 <734461790@qq.com> Date: Sun, 17 Apr 2022 21:14:35 +0800 Subject: [PATCH] gh-91541: Fix error in example in moudules tutorial --- Doc/tutorial/modules.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/tutorial/modules.rst b/Doc/tutorial/modules.rst index 0d1fadadf83a01..524d3c32417b92 100644 --- a/Doc/tutorial/modules.rst +++ b/Doc/tutorial/modules.rst @@ -508,7 +508,7 @@ code:: __all__ = ["echo", "surround", "reverse"] This would mean that ``from sound.effects import *`` would import the three -named submodules of the :mod:`sound` package. +named submodules of the :mod:`sound.effects` package. If ``__all__`` is not defined, the statement ``from sound.effects import *`` does *not* import all submodules from the package :mod:`sound.effects` into the