> 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
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
> 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
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
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/