From: Andrew M. Kuchling Date: Wed, 15 Jun 2005 18:45:27 +0000 (+0000) Subject: [Patch #1005892 from Alexandr Zamaraev] Fix two errors in the curses test suite X-Git-Tag: v2.4.2c1~182 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=951725368dd672bacec4286849101a9e57a71e2b;p=thirdparty%2FPython%2Fcpython.git [Patch #1005892 from Alexandr Zamaraev] Fix two errors in the curses test suite --- diff --git a/Lib/test/test_curses.py b/Lib/test/test_curses.py index fa57e293521e..67f3c571ad13 100644 --- a/Lib/test/test_curses.py +++ b/Lib/test/test_curses.py @@ -107,6 +107,7 @@ def window_funcs(stdscr): stdscr.scroll(2) stdscr.scroll(-3) + stdscr.move(12, 2) stdscr.setscrreg(10,15) win3 = stdscr.subwin(10,10) win3 = stdscr.subwin(10,10, 5,5) @@ -179,7 +180,7 @@ def module_funcs(stdscr): curses.init_pair(2, 1,1) curses.color_content(1) curses.color_pair(2) - curses.pair_content(curses.COLOR_PAIRS) + curses.pair_content(curses.COLOR_PAIRS - 1) curses.pair_number(0) if hasattr(curses, 'use_default_colors'):