mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Raise statement normalization in Lib/test/.
This commit is contained in:
parent
e0281cab81
commit
3add4d78ff
47 changed files with 218 additions and 218 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue