module sound

The sound module exports the following utility functions related to sound. These functions have the property that if sound support is not available, they do nothing, allowing an application to continue without sound.
pause_sound()
Pauses all sound channels. (Equivalent to mixer.pause().)
resume_sound()
Resumes channels previously paused by pause_sound(). (Equivalent to mixer.unpause().)
stop_sound()
Stops all sound channels. (Equivalent to mixer.stop().)