mirror of
https://github.com/python/cpython.git
synced 2025-08-31 22:18:28 +00:00
Issue #27748: Merge with 3.5
This commit is contained in:
commit
cefebf3cbe
1 changed files with 4 additions and 1 deletions
|
@ -120,7 +120,10 @@ class PlaySoundTest(unittest.TestCase):
|
|||
safe_PlaySound('!"$%&/(#+*', winsound.SND_ALIAS)
|
||||
|
||||
def test_alias_nofallback(self):
|
||||
safe_PlaySound('!"$%&/(#+*', winsound.SND_ALIAS | winsound.SND_NODEFAULT)
|
||||
self.assertRaises(RuntimeError,
|
||||
winsound.PlaySound,
|
||||
'!"$%&/(#+*',
|
||||
winsound.SND_ALIAS | winsound.SND_NODEFAULT)
|
||||
|
||||
def test_stopasync(self):
|
||||
safe_PlaySound(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue