💾 Archived View for tris.fyi › pydoc › _curses_panel captured on 2023-04-26 at 13:33:43. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2022-01-08)
-=-=-=-=-=-=-
This module has no docstring.
with_traceback(...) Exception.with_traceback(tb) -- set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>
above(self, /) Return the panel above the current panel.
below(self, /) Return the panel below the current panel.
bottom(self, /) Push the panel to the bottom of the stack.
hidden(self, /) Return True if the panel is hidden (not visible), False otherwise.
hide(self, /) Hide the panel. This does not delete the object, it just makes the window on screen invisible.
move(self, y, x, /) Move the panel to the screen coordinates (y, x).
replace(self, win, /) Change the window associated with the panel to the window win.
set_userptr(self, obj, /) Set the panel's user pointer to obj.
show(self, /) Display the panel (which might have been hidden).
top(self, /) Push panel to the top of the stack.
userptr(self, /) Return the user pointer for the panel.
window(self, /) Return the window object associated with the panel.
bottom_panel() Return the bottom panel in the panel stack.
new_panel(win, /) Return a panel object, associating it with the given window win.
top_panel() Return the top panel in the panel stack.
update_panels() Updates the virtual screen after changes in the panel stack. This does not call curses.doupdate(), so you'll have to do this yourself.
version = '2.1'