gh-91541: Fix error in example in modules tutorial (GH-91634)

(cherry picked from commit efbc668183)

Co-authored-by: 180909 <734461790@qq.com>
This commit is contained in:
Miss Islington (bot) 2022-04-17 14:40:14 -07:00 committed by GitHub
parent 833ff16430
commit c6c9823455
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -504,7 +504,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