Lines Matching full:effects
223 change the effects of optimization.
393 effects/ Subpackage for sound effects
419 import sound.effects.echo
421 This loads the submodule :mod:`sound.effects.echo`. It must be referenced with
424 sound.effects.echo.echofilter(input, output, delay=0.7, atten=4)
428 from sound.effects import echo
437 from sound.effects.echo import echofilter
464 Now what happens when the user writes ``from sound.effects import *``? Ideally,
467 long time and importing sub-modules might have unwanted side-effects that should
477 example, the file :file:`sound/effects/__init__.py` could contain the following
482 This would mean that ``from sound.effects import *`` would import the three
485 If ``__all__`` is not defined, the statement ``from sound.effects import *``
486 does *not* import all submodules from the package :mod:`sound.effects` into the
487 current namespace; it only ensures that the package :mod:`sound.effects` has
494 import sound.effects.echo
495 import sound.effects.surround
496 from sound.effects import *
499 current namespace because they are defined in the :mod:`sound.effects` package
519 the :mod:`echo` module in the :mod:`sound.effects` package, it can use ``from
520 sound.effects import echo``.