mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
gh-91541: Fix error in example in modules tutorial (#91634)
This commit is contained in:
parent
017f07a229
commit
efbc668183
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue