From: Andrew M. Kuchling Date: Tue, 19 Oct 2004 19:36:09 +0000 (+0000) Subject: Display helpful message; print repr() of return value so the whitespace is clearer X-Git-Tag: v2.4b2~84 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8520b947501c585ab3e02b3b74e3a20f9172e3ab;p=python Display helpful message; print repr() of return value so the whitespace is clearer --- diff --git a/Lib/curses/textpad.py b/Lib/curses/textpad.py index e23ee02b96..28d78dd5cd 100644 --- a/Lib/curses/textpad.py +++ b/Lib/curses/textpad.py @@ -163,10 +163,11 @@ if __name__ == '__main__': def test_editbox(stdscr): ncols, nlines = 9, 4 uly, ulx = 15, 20 + stdscr.addstr(uly-2, ulx, "Use Ctrl-G to end editing.") win = curses.newwin(nlines, ncols, uly, ulx) rectangle(stdscr, uly-1, ulx-1, uly + nlines, ulx + ncols) stdscr.refresh() return Textbox(win).edit() str = curses.wrapper(test_editbox) - print str + print 'Contents of text box:', repr(str)