Re: [Tutor] curses delwin functionality?

2008-06-15 Thread Jonathan Bohren
> I'm trying to get my hands on some curses experiences in Python. > > The examples I found don't really tell me how to get rid of subwindows and > restore the underlying window again. Is there something that replaces the > curses functionality "delwin"? > Thanks for any help! I had the same

[Tutor] curses delwin() functionality

2006-03-06 Thread ZeffriN
Hello all, Im writing about a topic which was discussed previously on this mailing list but didn't seem to be answered.. Bernd Prager asked whether the curses modules in Python had functionality like that of delwin() in the C libraries.  He also supplied the below code sample to demonstrate the

Re: [Tutor] curses delwin functionality?

2005-12-29 Thread Bernd Prager
> Rumor has it that Bernd Prager may have mentioned these words: > > [snippety] > >> # curses.delwin(s) <-- that doesn't exist :-/ > > I've *only* done curses in python, so quite often I don't know the C > analogue, but try: > > curses.endwin() > I am looking for a functionality that destroys o

Re: [Tutor] curses delwin functionality?

2005-12-29 Thread Roger Merchberger
Rumor has it that Bernd Prager may have mentioned these words: [snippety] > # curses.delwin(s) <-- that doesn't exist :-/ I've *only* done curses in python, so quite often I don't know the C analogue, but try: curses.endwin() I'm not sure if that's exactly what your looking for, but if no

[Tutor] curses delwin functionality?

2005-12-29 Thread Bernd Prager
Hi, I'm trying to get my hands on some curses experiences in Python. The examples I found don't really tell me how to get rid of subwindows and restore the underlying window again. Is there something that replaces the curses functionality "delwin"? Thanks for any help! Here's my example: #!/usr/