summaryrefslogtreecommitdiff
path: root/Lib/test/test_curses.py
diff options
context:
space:
mode:
authorCollin Winter <collinw@gmail.com>2007-08-29 23:37:32 +0000
committerCollin Winter <collinw@gmail.com>2007-08-29 23:37:32 +0000
commit03f6649445c535b585c00acd7a5fd3b7a3ae5018 (patch)
tree6719b71a07303286fa8ef3acd2bf48b5f621a19d /Lib/test/test_curses.py
parent44c8e4b776323e23a7173611c472fd4da04f6fae (diff)
downloadcpython-03f6649445c535b585c00acd7a5fd3b7a3ae5018.tar.gz
Raise statement normalization in Lib/test/.
Diffstat (limited to 'Lib/test/test_curses.py')
-rw-r--r--Lib/test/test_curses.py8
1 files changed, 4 insertions, 4 deletions
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()