Home
last modified time | relevance | path

Searched refs:winsound (Results 1 - 1 of 1) sorted by relevance

/third_party/python/Lib/test/
H A Dtest_winsound.py1 # Ridiculously simple test of the winsound module for Windows.
12 winsound = import_helper.import_module('winsound') variable
34 safe_Beep = sound_func(winsound.Beep)
35 safe_MessageBeep = sound_func(winsound.MessageBeep)
36 safe_PlaySound = sound_func(winsound.PlaySound)
42 self.assertRaises(TypeError, winsound.Beep)
43 self.assertRaises(ValueError, winsound.Beep, 36, 75)
44 self.assertRaises(ValueError, winsound.Beep, 32768, 75)
64 self.assertRaises(TypeError, winsound
[all...]

Completed in 1 milliseconds