From 03f6649445c535b585c00acd7a5fd3b7a3ae5018 Mon Sep 17 00:00:00 2001 From: Collin Winter Date: Wed, 29 Aug 2007 23:37:32 +0000 Subject: Raise statement normalization in Lib/test/. --- Lib/test/test_curses.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Lib/test/test_curses.py') diff --git a/Lib/test/test_curses.py b/Lib/test/test_curses.py index ee679e762e..64d6536ed0 100644 --- a/Lib/test/test_curses.py +++ b/Lib/test/test_curses.py @@ -22,7 +22,7 @@ requires('curses') # XXX: if newterm was supported we could use it instead of initscr and not exit term = os.environ.get('TERM') if not term or term == 'unknown': - raise TestSkipped, "$TERM=%r, calling initscr() may cause exit" % term + raise TestSkipped("$TERM=%r, calling initscr() may cause exit" % term) if sys.platform == "cygwin": raise TestSkipped("cygwin's curses mostly just hangs") @@ -72,7 +72,7 @@ def window_funcs(stdscr): except TypeError: pass else: - raise RuntimeError, "Expected win.border() to raise TypeError" + raise RuntimeError("Expected win.border() to raise TypeError") stdscr.clearok(1) @@ -243,7 +243,7 @@ def test_userptr_without_set(stdscr): # try to access userptr() before calling set_userptr() -- segfaults try: p.userptr() - raise RuntimeError, 'userptr should fail since not set' + raise RuntimeError('userptr should fail since not set') except curses.panel.error: pass @@ -253,7 +253,7 @@ def test_resize_term(stdscr): curses.resizeterm(lines - 1, cols + 1) if curses.LINES != lines - 1 or curses.COLS != cols + 1: - raise RuntimeError, "Expected resizeterm to update LINES and COLS" + raise RuntimeError("Expected resizeterm to update LINES and COLS") def main(stdscr): curses.savetty() -- cgit v1.2.1