Skip to content

Commit c6c9823

Browse files
gh-91541: Fix error in example in modules tutorial (GH-91634)
(cherry picked from commit efbc668) Co-authored-by: 180909 <734461790@qq.com>
1 parent 833ff16 commit c6c9823

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/tutorial/modules.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ code::
504504
__all__ = ["echo", "surround", "reverse"]
505505

506506
This would mean that ``from sound.effects import *`` would import the three
507-
named submodules of the :mod:`sound` package.
507+
named submodules of the :mod:`sound.effects` package.
508508

509509
If ``__all__`` is not defined, the statement ``from sound.effects import *``
510510
does *not* import all submodules from the package :mod:`sound.effects` into the

0 commit comments

Comments
 (0)