Home | History | Annotate | Download | only in tutorial

Lines Matching full:effects

388          effects/                  Subpackage for sound effects
414 import sound.effects.echo
416 This loads the submodule :mod:`sound.effects.echo`. It must be referenced with
419 sound.effects.echo.echofilter(input, output, delay=0.7, atten=4)
423 from sound.effects import echo
432 from sound.effects.echo import echofilter
459 Now what happens when the user writes ``from sound.effects import *``? Ideally,
462 long time and importing sub-modules might have unwanted side-effects that should
472 example, the file :file:`sound/effects/__init__.py` could contain the following
477 This would mean that ``from sound.effects import *`` would import the three
480 If ``__all__`` is not defined, the statement ``from sound.effects import *``
481 does *not* import all submodules from the package :mod:`sound.effects` into the
482 current namespace; it only ensures that the package :mod:`sound.effects` has
489 import sound.effects.echo
490 import sound.effects.surround
491 from sound.effects import *
494 current namespace because they are defined in the :mod:`sound.effects` package
523 the :mod:`echo` module in the :mod:`sound.effects` package, it can use ``from
524 sound.effects import echo``.