Raise statement normalization in Lib/test/.
diff --git a/Lib/test/test_univnewlines.py b/Lib/test/test_univnewlines.py
index 4ca1a27..22fd266 100644
--- a/Lib/test/test_univnewlines.py
+++ b/Lib/test/test_univnewlines.py
@@ -5,8 +5,8 @@
from test import test_support
if not hasattr(sys.stdin, 'newlines'):
- raise test_support.TestSkipped, \
- "This Python does not have universal newline support"
+ raise test_support.TestSkipped(
+ "This Python does not have universal newline support")
FATX = 'x' * (2**14)