On Thu, 24 Jul 2008 21:28:24 +0200, Dariusz Malec wrote:
> forgot to post the code. Server does not allow to post attachments. The
> code is here http://www.kos.wsiz.rzeszow.pl/~dmalec/src.zip
You might google about SIGWINCH and see where that gets you.
Of course, to my great disappointment, pyt
forgot to post the code. Server does not allow to post attachments.
The code is here http://www.kos.wsiz.rzeszow.pl/~dmalec/src.zip
--
Dariusz Malec
http://www.kos.wsiz.rzeszow.pl
JID:[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
Simon Morgan <[EMAIL PROTECTED]> wrote:
> I'd also appreciate any pointers to good tutorials on curses, I've read
> the one by awk and esr but found it rather brief and lacking in detail.
esr only contributed his name - awk wrote the rest.
(When I asked why, he only said it sounded like a good id
Simon Morgan wrote:
> On Sat, 07 Oct 2006 13:12:33 +, Simon Morgan wrote:
>
> > import curses
> >
> > def main(scr):
> > status = curses.newwin(1, curses.COLS, 0, 0) status.bkgd('0')
> > status.refresh()
> >
> > list = curses.newwin(curses.LINES, curses.COLS, 1, 0) list.bkgd('X')
>
On Sat, 07 Oct 2006 13:12:33 +, Simon Morgan wrote:
> import curses
>
> def main(scr):
> status = curses.newwin(1, curses.COLS, 0, 0) status.bkgd('0')
> status.refresh()
>
> list = curses.newwin(curses.LINES, curses.COLS, 1, 0) list.bkgd('X')
> list.refresh()
If I use scr.su