mirror of https://github.com/python/cpython
667 lines
17 KiB
C
667 lines
17 KiB
C
/*
|
||
* Interface to the ncurses panel library
|
||
*
|
||
* Original version by Thomas Gellekum
|
||
*/
|
||
|
||
/* Release Number */
|
||
|
||
static const char PyCursesVersion[] = "2.1";
|
||
|
||
/* Includes */
|
||
|
||
#include "Python.h"
|
||
|
||
#include "py_curses.h"
|
||
|
||
#include <panel.h>
|
||
|
||
typedef struct {
|
||
PyObject *PyCursesError;
|
||
PyObject *PyCursesPanel_Type;
|
||
} _curses_panelstate;
|
||
|
||
#define _curses_panelstate(o) ((_curses_panelstate *)PyModule_GetState(o))
|
||
|
||
static int
|
||
_curses_panel_clear(PyObject *m)
|
||
{
|
||
Py_CLEAR(_curses_panelstate(m)->PyCursesError);
|
||
return 0;
|
||
}
|
||
|
||
static int
|
||
_curses_panel_traverse(PyObject *m, visitproc visit, void *arg)
|
||
{
|
||
Py_VISIT(_curses_panelstate(m)->PyCursesError);
|
||
return 0;
|
||
}
|
||
|
||
static void
|
||
_curses_panel_free(void *m)
|
||
{
|
||
_curses_panel_clear((PyObject *) m);
|
||
}
|
||
|
||
static struct PyModuleDef _curses_panelmodule;
|
||
|
||
#define _curses_panelstate_global \
|
||
((_curses_panelstate *) PyModule_GetState(PyState_FindModule(&_curses_panelmodule)))
|
||
|
||
/* Utility Functions */
|
||
|
||
/*
|
||
* Check the return code from a curses function and return None
|
||
* or raise an exception as appropriate.
|
||
*/
|
||
|
||
static PyObject *
|
||
PyCursesCheckERR(int code, const char *fname)
|
||
{
|
||
if (code != ERR) {
|
||
Py_RETURN_NONE;
|
||
} else {
|
||
if (fname == NULL) {
|
||
PyErr_SetString(_curses_panelstate_global->PyCursesError, catchall_ERR);
|
||
} else {
|
||
PyErr_Format(_curses_panelstate_global->PyCursesError, "%s() returned ERR", fname);
|
||
}
|
||
return NULL;
|
||
}
|
||
}
|
||
|
||
/*****************************************************************************
|
||
The Panel Object
|
||
******************************************************************************/
|
||
|
||
/* Definition of the panel object and panel type */
|
||
|
||
typedef struct {
|
||
PyObject_HEAD
|
||
PANEL *pan;
|
||
PyCursesWindowObject *wo; /* for reference counts */
|
||
} PyCursesPanelObject;
|
||
|
||
#define PyCursesPanel_Check(v) \
|
||
(Py_TYPE(v) == _curses_panelstate_global->PyCursesPanel_Type)
|
||
|
||
/* Some helper functions. The problem is that there's always a window
|
||
associated with a panel. To ensure that Python's GC doesn't pull
|
||
this window from under our feet we need to keep track of references
|
||
to the corresponding window object within Python. We can't use
|
||
dupwin(oldwin) to keep a copy of the curses WINDOW because the
|
||
contents of oldwin is copied only once; code like
|
||
|
||
win = newwin(...)
|
||
pan = win.panel()
|
||
win.addstr(some_string)
|
||
pan.window().addstr(other_string)
|
||
|
||
will fail. */
|
||
|
||
/* We keep a linked list of PyCursesPanelObjects, lop. A list should
|
||
suffice, I don't expect more than a handful or at most a few
|
||
dozens of panel objects within a typical program. */
|
||
typedef struct _list_of_panels {
|
||
PyCursesPanelObject *po;
|
||
struct _list_of_panels *next;
|
||
} list_of_panels;
|
||
|
||
/* list anchor */
|
||
static list_of_panels *lop;
|
||
|
||
/* Insert a new panel object into lop */
|
||
static int
|
||
insert_lop(PyCursesPanelObject *po)
|
||
{
|
||
list_of_panels *new;
|
||
|
||
if ((new = (list_of_panels *)PyMem_Malloc(sizeof(list_of_panels))) == NULL) {
|
||
PyErr_NoMemory();
|
||
return -1;
|
||
}
|
||
new->po = po;
|
||
new->next = lop;
|
||
lop = new;
|
||
return 0;
|
||
}
|
||
|
||
/* Remove the panel object from lop */
|
||
static void
|
||
remove_lop(PyCursesPanelObject *po)
|
||
{
|
||
list_of_panels *temp, *n;
|
||
|
||
temp = lop;
|
||
if (temp->po == po) {
|
||
lop = temp->next;
|
||
PyMem_Free(temp);
|
||
return;
|
||
}
|
||
while (temp->next == NULL || temp->next->po != po) {
|
||
if (temp->next == NULL) {
|
||
PyErr_SetString(PyExc_RuntimeError,
|
||
"remove_lop: can't find Panel Object");
|
||
return;
|
||
}
|
||
temp = temp->next;
|
||
}
|
||
n = temp->next->next;
|
||
PyMem_Free(temp->next);
|
||
temp->next = n;
|
||
return;
|
||
}
|
||
|
||
/* Return the panel object that corresponds to pan */
|
||
static PyCursesPanelObject *
|
||
find_po(PANEL *pan)
|
||
{
|
||
list_of_panels *temp;
|
||
for (temp = lop; temp->po->pan != pan; temp = temp->next)
|
||
if (temp->next == NULL) return NULL; /* not found!? */
|
||
return temp->po;
|
||
}
|
||
|
||
/*[clinic input]
|
||
module _curses_panel
|
||
class _curses_panel.panel "PyCursesPanelObject *" "&PyCursesPanel_Type"
|
||
[clinic start generated code]*/
|
||
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=2f4ef263ca850a31]*/
|
||
|
||
#include "clinic/_curses_panel.c.h"
|
||
|
||
/* ------------- PANEL routines --------------- */
|
||
|
||
/*[clinic input]
|
||
_curses_panel.panel.bottom
|
||
|
||
Push the panel to the bottom of the stack.
|
||
[clinic start generated code]*/
|
||
|
||
static PyObject *
|
||
_curses_panel_panel_bottom_impl(PyCursesPanelObject *self)
|
||
/*[clinic end generated code: output=7aa7d14d7e1d1ce6 input=b6c920c071b61e2e]*/
|
||
{
|
||
return PyCursesCheckERR(bottom_panel(self->pan), "bottom");
|
||
}
|
||
|
||
/*[clinic input]
|
||
_curses_panel.panel.hide
|
||
|
||
Hide the panel.
|
||
|
||
This does not delete the object, it just makes the window on screen invisible.
|
||
[clinic start generated code]*/
|
||
|
||
static PyObject *
|
||
_curses_panel_panel_hide_impl(PyCursesPanelObject *self)
|
||
/*[clinic end generated code: output=a7bbbd523e1eab49 input=f6ab884e99386118]*/
|
||
{
|
||
return PyCursesCheckERR(hide_panel(self->pan), "hide");
|
||
}
|
||
|
||
/*[clinic input]
|
||
_curses_panel.panel.show
|
||
|
||
Display the panel (which might have been hidden).
|
||
[clinic start generated code]*/
|
||
|
||
static PyObject *
|
||
_curses_panel_panel_show_impl(PyCursesPanelObject *self)
|
||
/*[clinic end generated code: output=6b4553ab45c97769 input=57b167bbefaa3755]*/
|
||
{
|
||
return PyCursesCheckERR(show_panel(self->pan), "show");
|
||
}
|
||
|
||
/*[clinic input]
|
||
_curses_panel.panel.top
|
||
|
||
Push panel to the top of the stack.
|
||
[clinic start generated code]*/
|
||
|
||
static PyObject *
|
||
_curses_panel_panel_top_impl(PyCursesPanelObject *self)
|
||
/*[clinic end generated code: output=0f5f2f8cdd2d1777 input=be33975ec3ca0e9a]*/
|
||
{
|
||
return PyCursesCheckERR(top_panel(self->pan), "top");
|
||
}
|
||
|
||
/* Allocation and deallocation of Panel Objects */
|
||
|
||
static PyObject *
|
||
PyCursesPanel_New(PANEL *pan, PyCursesWindowObject *wo)
|
||
{
|
||
PyCursesPanelObject *po;
|
||
|
||
po = PyObject_NEW(PyCursesPanelObject,
|
||
(PyTypeObject *)(_curses_panelstate_global)->PyCursesPanel_Type);
|
||
if (po == NULL) return NULL;
|
||
po->pan = pan;
|
||
if (insert_lop(po) < 0) {
|
||
po->wo = NULL;
|
||
Py_DECREF(po);
|
||
return NULL;
|
||
}
|
||
po->wo = wo;
|
||
Py_INCREF(wo);
|
||
return (PyObject *)po;
|
||
}
|
||
|
||
static void
|
||
PyCursesPanel_Dealloc(PyCursesPanelObject *po)
|
||
{
|
||
PyObject *obj = (PyObject *) panel_userptr(po->pan);
|
||
if (obj) {
|
||
(void)set_panel_userptr(po->pan, NULL);
|
||
Py_DECREF(obj);
|
||
}
|
||
(void)del_panel(po->pan);
|
||
if (po->wo != NULL) {
|
||
Py_DECREF(po->wo);
|
||
remove_lop(po);
|
||
}
|
||
PyObject_DEL(po);
|
||
}
|
||
|
||
/* panel_above(NULL) returns the bottom panel in the stack. To get
|
||
this behaviour we use curses.panel.bottom_panel(). */
|
||
/*[clinic input]
|
||
_curses_panel.panel.above
|
||
|
||
Return the panel above the current panel.
|
||
[clinic start generated code]*/
|
||
|
||
static PyObject *
|
||
_curses_panel_panel_above_impl(PyCursesPanelObject *self)
|
||
/*[clinic end generated code: output=70ac06d25fd3b4da input=c059994022976788]*/
|
||
{
|
||
PANEL *pan;
|
||
PyCursesPanelObject *po;
|
||
|
||
pan = panel_above(self->pan);
|
||
|
||
if (pan == NULL) { /* valid output, it means the calling panel
|
||
is on top of the stack */
|
||
Py_RETURN_NONE;
|
||
}
|
||
po = find_po(pan);
|
||
if (po == NULL) {
|
||
PyErr_SetString(PyExc_RuntimeError,
|
||
"panel_above: can't find Panel Object");
|
||
return NULL;
|
||
}
|
||
Py_INCREF(po);
|
||
return (PyObject *)po;
|
||
}
|
||
|
||
/* panel_below(NULL) returns the top panel in the stack. To get
|
||
this behaviour we use curses.panel.top_panel(). */
|
||
/*[clinic input]
|
||
_curses_panel.panel.below
|
||
|
||
Return the panel below the current panel.
|
||
[clinic start generated code]*/
|
||
|
||
static PyObject *
|
||
_curses_panel_panel_below_impl(PyCursesPanelObject *self)
|
||
/*[clinic end generated code: output=282861122e06e3de input=cc08f61936d297c6]*/
|
||
{
|
||
PANEL *pan;
|
||
PyCursesPanelObject *po;
|
||
|
||
pan = panel_below(self->pan);
|
||
|
||
if (pan == NULL) { /* valid output, it means the calling panel
|
||
is on the bottom of the stack */
|
||
Py_RETURN_NONE;
|
||
}
|
||
po = find_po(pan);
|
||
if (po == NULL) {
|
||
PyErr_SetString(PyExc_RuntimeError,
|
||
"panel_below: can't find Panel Object");
|
||
return NULL;
|
||
}
|
||
Py_INCREF(po);
|
||
return (PyObject *)po;
|
||
}
|
||
|
||
/*[clinic input]
|
||
_curses_panel.panel.hidden
|
||
|
||
Return True if the panel is hidden (not visible), False otherwise.
|
||
[clinic start generated code]*/
|
||
|
||
static PyObject *
|
||
_curses_panel_panel_hidden_impl(PyCursesPanelObject *self)
|
||
/*[clinic end generated code: output=66eebd1ab4501a71 input=453d4b4fce25e21a]*/
|
||
{
|
||
if (panel_hidden(self->pan))
|
||
Py_RETURN_TRUE;
|
||
else
|
||
Py_RETURN_FALSE;
|
||
}
|
||
|
||
/*[clinic input]
|
||
_curses_panel.panel.move
|
||
|
||
y: int
|
||
x: int
|
||
/
|
||
|
||
Move the panel to the screen coordinates (y, x).
|
||
[clinic start generated code]*/
|
||
|
||
static PyObject *
|
||
_curses_panel_panel_move_impl(PyCursesPanelObject *self, int y, int x)
|
||
/*[clinic end generated code: output=d867535a89777415 input=e0b36b78acc03fba]*/
|
||
{
|
||
return PyCursesCheckERR(move_panel(self->pan, y, x), "move_panel");
|
||
}
|
||
|
||
/*[clinic input]
|
||
_curses_panel.panel.window
|
||
|
||
Return the window object associated with the panel.
|
||
[clinic start generated code]*/
|
||
|
||
static PyObject *
|
||
_curses_panel_panel_window_impl(PyCursesPanelObject *self)
|
||
/*[clinic end generated code: output=5f05940d4106b4cb input=6067353d2c307901]*/
|
||
{
|
||
Py_INCREF(self->wo);
|
||
return (PyObject *)self->wo;
|
||
}
|
||
|
||
/*[clinic input]
|
||
_curses_panel.panel.replace
|
||
|
||
win: object(type="PyCursesWindowObject *", subclass_of="&PyCursesWindow_Type")
|
||
/
|
||
|
||
Change the window associated with the panel to the window win.
|
||
[clinic start generated code]*/
|
||
|
||
static PyObject *
|
||
_curses_panel_panel_replace_impl(PyCursesPanelObject *self,
|
||
PyCursesWindowObject *win)
|
||
/*[clinic end generated code: output=2253a95f7b287255 input=4b1c4283987d9dfa]*/
|
||
{
|
||
PyCursesPanelObject *po;
|
||
int rtn;
|
||
|
||
po = find_po(self->pan);
|
||
if (po == NULL) {
|
||
PyErr_SetString(PyExc_RuntimeError,
|
||
"replace_panel: can't find Panel Object");
|
||
return NULL;
|
||
}
|
||
|
||
rtn = replace_panel(self->pan, win->win);
|
||
if (rtn == ERR) {
|
||
PyErr_SetString(_curses_panelstate_global->PyCursesError, "replace_panel() returned ERR");
|
||
return NULL;
|
||
}
|
||
Py_INCREF(win);
|
||
Py_SETREF(po->wo, win);
|
||
Py_RETURN_NONE;
|
||
}
|
||
|
||
/*[clinic input]
|
||
_curses_panel.panel.set_userptr
|
||
|
||
obj: object
|
||
/
|
||
|
||
Set the panel’s user pointer to obj.
|
||
[clinic start generated code]*/
|
||
|
||
static PyObject *
|
||
_curses_panel_panel_set_userptr(PyCursesPanelObject *self, PyObject *obj)
|
||
/*[clinic end generated code: output=6fb145b3af88cf4a input=2056be1cd148b05c]*/
|
||
{
|
||
PyObject *oldobj;
|
||
int rc;
|
||
PyCursesInitialised;
|
||
Py_INCREF(obj);
|
||
oldobj = (PyObject *) panel_userptr(self->pan);
|
||
rc = set_panel_userptr(self->pan, (void*)obj);
|
||
if (rc == ERR) {
|
||
/* In case of an ncurses error, decref the new object again */
|
||
Py_DECREF(obj);
|
||
}
|
||
Py_XDECREF(oldobj);
|
||
return PyCursesCheckERR(rc, "set_panel_userptr");
|
||
}
|
||
|
||
/*[clinic input]
|
||
_curses_panel.panel.userptr
|
||
|
||
Return the user pointer for the panel.
|
||
[clinic start generated code]*/
|
||
|
||
static PyObject *
|
||
_curses_panel_panel_userptr_impl(PyCursesPanelObject *self)
|
||
/*[clinic end generated code: output=e849c307b5dc9237 input=f78b7a47aef0fd50]*/
|
||
{
|
||
PyObject *obj;
|
||
PyCursesInitialised;
|
||
obj = (PyObject *) panel_userptr(self->pan);
|
||
if (obj == NULL) {
|
||
PyErr_SetString(_curses_panelstate_global->PyCursesError, "no userptr set");
|
||
return NULL;
|
||
}
|
||
|
||
Py_INCREF(obj);
|
||
return obj;
|
||
}
|
||
|
||
|
||
/* Module interface */
|
||
|
||
static PyMethodDef PyCursesPanel_Methods[] = {
|
||
_CURSES_PANEL_PANEL_ABOVE_METHODDEF
|
||
_CURSES_PANEL_PANEL_BELOW_METHODDEF
|
||
_CURSES_PANEL_PANEL_BOTTOM_METHODDEF
|
||
_CURSES_PANEL_PANEL_HIDDEN_METHODDEF
|
||
_CURSES_PANEL_PANEL_HIDE_METHODDEF
|
||
_CURSES_PANEL_PANEL_MOVE_METHODDEF
|
||
_CURSES_PANEL_PANEL_REPLACE_METHODDEF
|
||
_CURSES_PANEL_PANEL_SET_USERPTR_METHODDEF
|
||
_CURSES_PANEL_PANEL_SHOW_METHODDEF
|
||
_CURSES_PANEL_PANEL_TOP_METHODDEF
|
||
_CURSES_PANEL_PANEL_USERPTR_METHODDEF
|
||
_CURSES_PANEL_PANEL_WINDOW_METHODDEF
|
||
{NULL, NULL} /* sentinel */
|
||
};
|
||
|
||
/* -------------------------------------------------------*/
|
||
|
||
static PyType_Slot PyCursesPanel_Type_slots[] = {
|
||
{Py_tp_dealloc, PyCursesPanel_Dealloc},
|
||
{Py_tp_methods, PyCursesPanel_Methods},
|
||
{0, 0},
|
||
};
|
||
|
||
static PyType_Spec PyCursesPanel_Type_spec = {
|
||
"_curses_panel.panel",
|
||
sizeof(PyCursesPanelObject),
|
||
0,
|
||
Py_TPFLAGS_DEFAULT,
|
||
PyCursesPanel_Type_slots
|
||
};
|
||
|
||
/* Wrapper for panel_above(NULL). This function returns the bottom
|
||
panel of the stack, so it's renamed to bottom_panel().
|
||
panel.above() *requires* a panel object in the first place which
|
||
may be undesirable. */
|
||
/*[clinic input]
|
||
_curses_panel.bottom_panel
|
||
|
||
Return the bottom panel in the panel stack.
|
||
[clinic start generated code]*/
|
||
|
||
static PyObject *
|
||
_curses_panel_bottom_panel_impl(PyObject *module)
|
||
/*[clinic end generated code: output=3aba9f985f4c2bd0 input=634c2a8078b3d7e4]*/
|
||
{
|
||
PANEL *pan;
|
||
PyCursesPanelObject *po;
|
||
|
||
PyCursesInitialised;
|
||
|
||
pan = panel_above(NULL);
|
||
|
||
if (pan == NULL) { /* valid output, it means
|
||
there's no panel at all */
|
||
Py_RETURN_NONE;
|
||
}
|
||
po = find_po(pan);
|
||
if (po == NULL) {
|
||
PyErr_SetString(PyExc_RuntimeError,
|
||
"panel_above: can't find Panel Object");
|
||
return NULL;
|
||
}
|
||
Py_INCREF(po);
|
||
return (PyObject *)po;
|
||
}
|
||
|
||
/*[clinic input]
|
||
_curses_panel.new_panel
|
||
|
||
win: object(type="PyCursesWindowObject *", subclass_of="&PyCursesWindow_Type")
|
||
/
|
||
|
||
Return a panel object, associating it with the given window win.
|
||
[clinic start generated code]*/
|
||
|
||
static PyObject *
|
||
_curses_panel_new_panel_impl(PyObject *module, PyCursesWindowObject *win)
|
||
/*[clinic end generated code: output=45e948e0176a9bd2 input=74d4754e0ebe4800]*/
|
||
{
|
||
PANEL *pan = new_panel(win->win);
|
||
if (pan == NULL) {
|
||
PyErr_SetString(_curses_panelstate_global->PyCursesError, catchall_NULL);
|
||
return NULL;
|
||
}
|
||
return (PyObject *)PyCursesPanel_New(pan, win);
|
||
}
|
||
|
||
|
||
/* Wrapper for panel_below(NULL). This function returns the top panel
|
||
of the stack, so it's renamed to top_panel(). panel.below()
|
||
*requires* a panel object in the first place which may be
|
||
undesirable. */
|
||
/*[clinic input]
|
||
_curses_panel.top_panel
|
||
|
||
Return the top panel in the panel stack.
|
||
[clinic start generated code]*/
|
||
|
||
static PyObject *
|
||
_curses_panel_top_panel_impl(PyObject *module)
|
||
/*[clinic end generated code: output=86704988bea8508e input=e62d6278dba39e79]*/
|
||
{
|
||
PANEL *pan;
|
||
PyCursesPanelObject *po;
|
||
|
||
PyCursesInitialised;
|
||
|
||
pan = panel_below(NULL);
|
||
|
||
if (pan == NULL) { /* valid output, it means
|
||
there's no panel at all */
|
||
Py_RETURN_NONE;
|
||
}
|
||
po = find_po(pan);
|
||
if (po == NULL) {
|
||
PyErr_SetString(PyExc_RuntimeError,
|
||
"panel_below: can't find Panel Object");
|
||
return NULL;
|
||
}
|
||
Py_INCREF(po);
|
||
return (PyObject *)po;
|
||
}
|
||
|
||
/*[clinic input]
|
||
_curses_panel.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.
|
||
[clinic start generated code]*/
|
||
|
||
static PyObject *
|
||
_curses_panel_update_panels_impl(PyObject *module)
|
||
/*[clinic end generated code: output=2f3b4c2e03d90ded input=a127069202b0a097]*/
|
||
{
|
||
PyCursesInitialised;
|
||
update_panels();
|
||
Py_RETURN_NONE;
|
||
}
|
||
|
||
|
||
/* List of functions defined in the module */
|
||
|
||
static PyMethodDef PyCurses_methods[] = {
|
||
_CURSES_PANEL_BOTTOM_PANEL_METHODDEF
|
||
_CURSES_PANEL_NEW_PANEL_METHODDEF
|
||
_CURSES_PANEL_TOP_PANEL_METHODDEF
|
||
_CURSES_PANEL_UPDATE_PANELS_METHODDEF
|
||
{NULL, NULL} /* sentinel */
|
||
};
|
||
|
||
/* Initialization function for the module */
|
||
|
||
|
||
static struct PyModuleDef _curses_panelmodule = {
|
||
PyModuleDef_HEAD_INIT,
|
||
"_curses_panel",
|
||
NULL,
|
||
sizeof(_curses_panelstate),
|
||
PyCurses_methods,
|
||
NULL,
|
||
_curses_panel_traverse,
|
||
_curses_panel_clear,
|
||
_curses_panel_free
|
||
};
|
||
|
||
PyMODINIT_FUNC
|
||
PyInit__curses_panel(void)
|
||
{
|
||
PyObject *m, *d, *v;
|
||
|
||
/* Create the module and add the functions */
|
||
m = PyModule_Create(&_curses_panelmodule);
|
||
if (m == NULL)
|
||
goto fail;
|
||
d = PyModule_GetDict(m);
|
||
|
||
/* Initialize object type */
|
||
v = PyType_FromSpec(&PyCursesPanel_Type_spec);
|
||
if (v == NULL)
|
||
goto fail;
|
||
((PyTypeObject *)v)->tp_new = NULL;
|
||
_curses_panelstate(m)->PyCursesPanel_Type = v;
|
||
|
||
import_curses();
|
||
if (PyErr_Occurred())
|
||
goto fail;
|
||
|
||
/* For exception _curses_panel.error */
|
||
_curses_panelstate(m)->PyCursesError = PyErr_NewException("_curses_panel.error", NULL, NULL);
|
||
PyDict_SetItemString(d, "error", _curses_panelstate(m)->PyCursesError);
|
||
|
||
/* Make the version available */
|
||
v = PyUnicode_FromString(PyCursesVersion);
|
||
PyDict_SetItemString(d, "version", v);
|
||
PyDict_SetItemString(d, "__version__", v);
|
||
Py_DECREF(v);
|
||
|
||
Py_INCREF(_curses_panelstate(m)->PyCursesPanel_Type);
|
||
PyModule_AddObject(m, "panel", (PyObject *)_curses_panelstate(m)->PyCursesPanel_Type);
|
||
return m;
|
||
fail:
|
||
Py_XDECREF(m);
|
||
return NULL;
|
||
}
|