Re: [Tutor] Using the curses module (or a better solution)

2008-10-07 Thread W W
On Tue, Oct 7, 2008 at 3:27 AM, Alan Gauld <[EMAIL PROTECTED]>wrote: > There are some wrappers around curses to make the learning > curve a little bit less steep. Although, personally I don't think > raw curses is all that hard... :-) > Especially not for such a simple program. Less than 100 line

Re: [Tutor] Using the curses module (or a better solution)

2008-10-07 Thread Alan Gauld
"Tony Cappellini" <[EMAIL PROTECTED]> wrote I'd like to add a 1-2 line no-scroll-area at the top of the screen, so as to print a message which indicates the progress of the current test. I'm not sure if the curses module has this non-scroll area capability. Yes, curses works by definin

Re: [Tutor] Using the curses module (or a better solution)

2008-10-06 Thread Tony Cappellini
> See the recent discussion of urwid for discussion of a similar problem. > http://thread.gmane.org/gmane.comp.python.tutor/50500/ This looks interesting. Thanks! ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] Using the curses module (or a better solution)

2008-10-06 Thread Kent Johnson
On Mon, Oct 6, 2008 at 6:58 PM, Tony Cappellini <[EMAIL PROTECTED]> wrote: > > > I'm maintaining a framework of tests which are run on a diskless Linux > client, in character mode (no graphical desktop). > > The tests often print out a lot of info, which scrolls off the screen. > > I'd like to add

[Tutor] Using the curses module (or a better solution)

2008-10-06 Thread Tony Cappellini
I'm maintaining a framework of tests which are run on a diskless Linux client, in character mode (no graphical desktop). The tests often print out a lot of info, which scrolls off the screen. I'd like to add a 1-2 line no-scroll-area at the top of the screen, so as to print a message which indica