[Python-checkins] cpython (2.7): Issue #27748: Backed out changeset 6137d0ed0a15
zach.ware
python-checkins at python.org
Mon Sep 5 19:10:51 EDT 2016
https://hg.python.org/cpython/rev/fb74947843eb
changeset: 103087:fb74947843eb
branch: 2.7
parent: 103076:6137d0ed0a15
user: Zachary Ware <zachary.ware at gmail.com>
date: Mon Sep 05 18:06:06 2016 -0500
summary:
Issue #27748: Backed out changeset 6137d0ed0a15
Apparently the test succeeds on XP.
files:
Lib/test/test_winsound.py | 5 +----
1 files changed, 1 insertions(+), 4 deletions(-)
diff --git a/Lib/test/test_winsound.py b/Lib/test/test_winsound.py
--- a/Lib/test/test_winsound.py
+++ b/Lib/test/test_winsound.py
@@ -103,10 +103,7 @@
safe_PlaySound('!"$%&/(#+*', winsound.SND_ALIAS)
def test_alias_nofallback(self):
- self.assertRaises(RuntimeError,
- winsound.PlaySound,
- '!"$%&/(#+*',
- winsound.SND_ALIAS | winsound.SND_NODEFAULT)
+ safe_PlaySound('!"$%&/(#+*', winsound.SND_ALIAS | winsound.SND_NODEFAULT)
def test_stopasync(self):
safe_PlaySound(
--
Repository URL: https://hg.python.org/cpython
More information about the Python-checkins
mailing list