I need an example of overlapping curses windows using panels in python
I'm looking for an example on how to use curses.panel to maintain overlapping windows. Mark Lakata I found this one here https://mail.python.org/pipermail/python-list/2001-April/105015.html . It moves one panel around the screen, below another panel. from time import sleep import curses, curses.panel def make_panel(h,l, y,x, str): win = curses.newwin(h,l, y,x) win.erase() win.box() win.addstr(2, 2, str) panel = curses.panel.new_panel(win) return win, panel def test(stdscr): try: curses.curs_set(0) except: pass stdscr.box() stdscr.addstr(2, 2, "panels everywhere") win1, panel1 = make_panel(10