bpo-1635741 port _curses_panel to multi-phase init (PEP 489) (GH-21986)

This commit is contained in:
Mohamed Koubaa 2020-09-07 10:14:25 -05:00 committed by GitHub
parent 2aabc3200b
commit 1baf030a90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 276 additions and 158 deletions

View File

@ -0,0 +1,2 @@
Port the :mod:`_curses_panel` extension module to multi-phase initialization
(:pep:`489`).

View File

@ -18,43 +18,42 @@ static const char PyCursesVersion[] = "2.1";
typedef struct { typedef struct {
PyObject *PyCursesError; PyObject *PyCursesError;
PyObject *PyCursesPanel_Type; PyTypeObject *PyCursesPanel_Type;
} _curses_panelstate; } _curses_panel_state;
static inline _curses_panelstate* static inline _curses_panel_state *
get_curses_panelstate(PyObject *module) get_curses_panel_state(PyObject *module)
{ {
void *state = PyModule_GetState(module); void *state = PyModule_GetState(module);
assert(state != NULL); assert(state != NULL);
return (_curses_panelstate *)state; return (_curses_panel_state *)state;
} }
static int static int
_curses_panel_clear(PyObject *m) _curses_panel_clear(PyObject *mod)
{ {
Py_CLEAR(get_curses_panelstate(m)->PyCursesError); _curses_panel_state *state = get_curses_panel_state(mod);
Py_CLEAR(state->PyCursesError);
Py_CLEAR(state->PyCursesPanel_Type);
return 0; return 0;
} }
static int static int
_curses_panel_traverse(PyObject *m, visitproc visit, void *arg) _curses_panel_traverse(PyObject *mod, visitproc visit, void *arg)
{ {
Py_VISIT(Py_TYPE(m)); Py_VISIT(Py_TYPE(mod));
Py_VISIT(get_curses_panelstate(m)->PyCursesError); _curses_panel_state *state = get_curses_panel_state(mod);
Py_VISIT(state->PyCursesError);
Py_VISIT(state->PyCursesPanel_Type);
return 0; return 0;
} }
static void static void
_curses_panel_free(void *m) _curses_panel_free(void *mod)
{ {
_curses_panel_clear((PyObject *) m); _curses_panel_clear((PyObject *) mod);
} }
static struct PyModuleDef _curses_panelmodule;
#define _curses_panelstate_global \
((_curses_panelstate *) PyModule_GetState(PyState_FindModule(&_curses_panelmodule)))
/* Utility Functions */ /* Utility Functions */
/* /*
@ -63,15 +62,17 @@ static struct PyModuleDef _curses_panelmodule;
*/ */
static PyObject * static PyObject *
PyCursesCheckERR(int code, const char *fname) PyCursesCheckERR(_curses_panel_state *state, int code, const char *fname)
{ {
if (code != ERR) { if (code != ERR) {
Py_RETURN_NONE; Py_RETURN_NONE;
} else { }
else {
if (fname == NULL) { if (fname == NULL) {
PyErr_SetString(_curses_panelstate_global->PyCursesError, catchall_ERR); PyErr_SetString(state->PyCursesError, catchall_ERR);
} else { }
PyErr_Format(_curses_panelstate_global->PyCursesError, "%s() returned ERR", fname); else {
PyErr_Format(state->PyCursesError, "%s() returned ERR", fname);
} }
return NULL; return NULL;
} }
@ -89,9 +90,6 @@ typedef struct {
PyCursesWindowObject *wo; /* for reference counts */ PyCursesWindowObject *wo; /* for reference counts */
} PyCursesPanelObject; } PyCursesPanelObject;
#define PyCursesPanel_Check(v) \
Py_IS_TYPE(v, _curses_panelstate_global->PyCursesPanel_Type)
/* Some helper functions. The problem is that there's always a window /* 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 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 this window from under our feet we need to keep track of references
@ -182,67 +180,81 @@ class _curses_panel.panel "PyCursesPanelObject *" "&PyCursesPanel_Type"
/*[clinic input] /*[clinic input]
_curses_panel.panel.bottom _curses_panel.panel.bottom
cls: defining_class
Push the panel to the bottom of the stack. Push the panel to the bottom of the stack.
[clinic start generated code]*/ [clinic start generated code]*/
static PyObject * static PyObject *
_curses_panel_panel_bottom_impl(PyCursesPanelObject *self) _curses_panel_panel_bottom_impl(PyCursesPanelObject *self, PyTypeObject *cls)
/*[clinic end generated code: output=7aa7d14d7e1d1ce6 input=b6c920c071b61e2e]*/ /*[clinic end generated code: output=8ec7fbbc08554021 input=6b7d2c0578b5a1c4]*/
{ {
return PyCursesCheckERR(bottom_panel(self->pan), "bottom"); _curses_panel_state *state = PyType_GetModuleState(cls);
return PyCursesCheckERR(state, bottom_panel(self->pan), "bottom");
} }
/*[clinic input] /*[clinic input]
_curses_panel.panel.hide _curses_panel.panel.hide
cls: defining_class
Hide the panel. Hide the panel.
This does not delete the object, it just makes the window on screen invisible. This does not delete the object, it just makes the window on screen invisible.
[clinic start generated code]*/ [clinic start generated code]*/
static PyObject * static PyObject *
_curses_panel_panel_hide_impl(PyCursesPanelObject *self) _curses_panel_panel_hide_impl(PyCursesPanelObject *self, PyTypeObject *cls)
/*[clinic end generated code: output=a7bbbd523e1eab49 input=f6ab884e99386118]*/ /*[clinic end generated code: output=cc6ab7203cdc1450 input=1bfc741f473e6055]*/
{ {
return PyCursesCheckERR(hide_panel(self->pan), "hide"); _curses_panel_state *state = PyType_GetModuleState(cls);
return PyCursesCheckERR(state, hide_panel(self->pan), "hide");
} }
/*[clinic input] /*[clinic input]
_curses_panel.panel.show _curses_panel.panel.show
cls: defining_class
Display the panel (which might have been hidden). Display the panel (which might have been hidden).
[clinic start generated code]*/ [clinic start generated code]*/
static PyObject * static PyObject *
_curses_panel_panel_show_impl(PyCursesPanelObject *self) _curses_panel_panel_show_impl(PyCursesPanelObject *self, PyTypeObject *cls)
/*[clinic end generated code: output=6b4553ab45c97769 input=57b167bbefaa3755]*/ /*[clinic end generated code: output=dc3421de375f0409 input=8122e80151cb4379]*/
{ {
return PyCursesCheckERR(show_panel(self->pan), "show"); _curses_panel_state *state = PyType_GetModuleState(cls);
return PyCursesCheckERR(state, show_panel(self->pan), "show");
} }
/*[clinic input] /*[clinic input]
_curses_panel.panel.top _curses_panel.panel.top
cls: defining_class
Push panel to the top of the stack. Push panel to the top of the stack.
[clinic start generated code]*/ [clinic start generated code]*/
static PyObject * static PyObject *
_curses_panel_panel_top_impl(PyCursesPanelObject *self) _curses_panel_panel_top_impl(PyCursesPanelObject *self, PyTypeObject *cls)
/*[clinic end generated code: output=0f5f2f8cdd2d1777 input=be33975ec3ca0e9a]*/ /*[clinic end generated code: output=10a072e511e873f7 input=1f372d597dda3379]*/
{ {
return PyCursesCheckERR(top_panel(self->pan), "top"); _curses_panel_state *state = PyType_GetModuleState(cls);
return PyCursesCheckERR(state, top_panel(self->pan), "top");
} }
/* Allocation and deallocation of Panel Objects */ /* Allocation and deallocation of Panel Objects */
static PyObject * static PyObject *
PyCursesPanel_New(PANEL *pan, PyCursesWindowObject *wo) PyCursesPanel_New(_curses_panel_state *state, PANEL *pan,
PyCursesWindowObject *wo)
{ {
PyCursesPanelObject *po; PyCursesPanelObject *po = PyObject_New(PyCursesPanelObject,
state->PyCursesPanel_Type);
if (po == NULL) {
return NULL;
}
po = PyObject_New(PyCursesPanelObject,
(PyTypeObject *)(_curses_panelstate_global)->PyCursesPanel_Type);
if (po == NULL) return NULL;
po->pan = pan; po->pan = pan;
if (insert_lop(po) < 0) { if (insert_lop(po) < 0) {
po->wo = NULL; po->wo = NULL;
@ -355,6 +367,7 @@ _curses_panel_panel_hidden_impl(PyCursesPanelObject *self)
/*[clinic input] /*[clinic input]
_curses_panel.panel.move _curses_panel.panel.move
cls: defining_class
y: int y: int
x: int x: int
/ /
@ -363,10 +376,12 @@ Move the panel to the screen coordinates (y, x).
[clinic start generated code]*/ [clinic start generated code]*/
static PyObject * static PyObject *
_curses_panel_panel_move_impl(PyCursesPanelObject *self, int y, int x) _curses_panel_panel_move_impl(PyCursesPanelObject *self, PyTypeObject *cls,
/*[clinic end generated code: output=d867535a89777415 input=e0b36b78acc03fba]*/ int y, int x)
/*[clinic end generated code: output=ce546c93e56867da input=60a0e7912ff99849]*/
{ {
return PyCursesCheckERR(move_panel(self->pan, y, x), "move_panel"); _curses_panel_state *state = PyType_GetModuleState(cls);
return PyCursesCheckERR(state, move_panel(self->pan, y, x), "move_panel");
} }
/*[clinic input] /*[clinic input]
@ -386,6 +401,7 @@ _curses_panel_panel_window_impl(PyCursesPanelObject *self)
/*[clinic input] /*[clinic input]
_curses_panel.panel.replace _curses_panel.panel.replace
cls: defining_class
win: object(type="PyCursesWindowObject *", subclass_of="&PyCursesWindow_Type") win: object(type="PyCursesWindowObject *", subclass_of="&PyCursesWindow_Type")
/ /
@ -394,22 +410,22 @@ Change the window associated with the panel to the window win.
static PyObject * static PyObject *
_curses_panel_panel_replace_impl(PyCursesPanelObject *self, _curses_panel_panel_replace_impl(PyCursesPanelObject *self,
PyTypeObject *cls,
PyCursesWindowObject *win) PyCursesWindowObject *win)
/*[clinic end generated code: output=2253a95f7b287255 input=4b1c4283987d9dfa]*/ /*[clinic end generated code: output=c71f95c212d58ae7 input=dbec7180ece41ff5]*/
{ {
PyCursesPanelObject *po; _curses_panel_state *state = PyType_GetModuleState(cls);
int rtn;
po = find_po(self->pan); PyCursesPanelObject *po = find_po(self->pan);
if (po == NULL) { if (po == NULL) {
PyErr_SetString(PyExc_RuntimeError, PyErr_SetString(PyExc_RuntimeError,
"replace_panel: can't find Panel Object"); "replace_panel: can't find Panel Object");
return NULL; return NULL;
} }
rtn = replace_panel(self->pan, win->win); int rtn = replace_panel(self->pan, win->win);
if (rtn == ERR) { if (rtn == ERR) {
PyErr_SetString(_curses_panelstate_global->PyCursesError, "replace_panel() returned ERR"); PyErr_SetString(state->PyCursesError, "replace_panel() returned ERR");
return NULL; return NULL;
} }
Py_INCREF(win); Py_INCREF(win);
@ -420,6 +436,7 @@ _curses_panel_panel_replace_impl(PyCursesPanelObject *self,
/*[clinic input] /*[clinic input]
_curses_panel.panel.set_userptr _curses_panel.panel.set_userptr
cls: defining_class
obj: object obj: object
/ /
@ -427,38 +444,43 @@ Set the panel's user pointer to obj.
[clinic start generated code]*/ [clinic start generated code]*/
static PyObject * static PyObject *
_curses_panel_panel_set_userptr(PyCursesPanelObject *self, PyObject *obj) _curses_panel_panel_set_userptr_impl(PyCursesPanelObject *self,
/*[clinic end generated code: output=6fb145b3af88cf4a input=d2c6a9dbefabbf39]*/ PyTypeObject *cls, PyObject *obj)
/*[clinic end generated code: output=db74f3db07b28080 input=e3fee2ff7b1b8e48]*/
{ {
PyObject *oldobj;
int rc;
PyCursesInitialised; PyCursesInitialised;
Py_INCREF(obj); Py_INCREF(obj);
oldobj = (PyObject *) panel_userptr(self->pan); PyObject *oldobj = (PyObject *) panel_userptr(self->pan);
rc = set_panel_userptr(self->pan, (void*)obj); int rc = set_panel_userptr(self->pan, (void*)obj);
if (rc == ERR) { if (rc == ERR) {
/* In case of an ncurses error, decref the new object again */ /* In case of an ncurses error, decref the new object again */
Py_DECREF(obj); Py_DECREF(obj);
} }
Py_XDECREF(oldobj); Py_XDECREF(oldobj);
return PyCursesCheckERR(rc, "set_panel_userptr");
_curses_panel_state *state = PyType_GetModuleState(cls);
return PyCursesCheckERR(state, rc, "set_panel_userptr");
} }
/*[clinic input] /*[clinic input]
_curses_panel.panel.userptr _curses_panel.panel.userptr
cls: defining_class
Return the user pointer for the panel. Return the user pointer for the panel.
[clinic start generated code]*/ [clinic start generated code]*/
static PyObject * static PyObject *
_curses_panel_panel_userptr_impl(PyCursesPanelObject *self) _curses_panel_panel_userptr_impl(PyCursesPanelObject *self,
/*[clinic end generated code: output=e849c307b5dc9237 input=f78b7a47aef0fd50]*/ PyTypeObject *cls)
/*[clinic end generated code: output=eea6e6f39ffc0179 input=f22ca4f115e30a80]*/
{ {
PyObject *obj; _curses_panel_state *state = PyType_GetModuleState(cls);
PyCursesInitialised; PyCursesInitialised;
obj = (PyObject *) panel_userptr(self->pan); PyObject *obj = (PyObject *) panel_userptr(self->pan);
if (obj == NULL) { if (obj == NULL) {
PyErr_SetString(_curses_panelstate_global->PyCursesError, "no userptr set"); PyErr_SetString(state->PyCursesError, "no userptr set");
return NULL; return NULL;
} }
@ -494,11 +516,10 @@ static PyType_Slot PyCursesPanel_Type_slots[] = {
}; };
static PyType_Spec PyCursesPanel_Type_spec = { static PyType_Spec PyCursesPanel_Type_spec = {
"_curses_panel.panel", .name = "_curses_panel.panel",
sizeof(PyCursesPanelObject), .basicsize = sizeof(PyCursesPanelObject),
0, .flags = Py_TPFLAGS_DEFAULT,
Py_TPFLAGS_DEFAULT, .slots = PyCursesPanel_Type_slots
PyCursesPanel_Type_slots
}; };
/* Wrapper for panel_above(NULL). This function returns the bottom /* Wrapper for panel_above(NULL). This function returns the bottom
@ -549,12 +570,14 @@ static PyObject *
_curses_panel_new_panel_impl(PyObject *module, PyCursesWindowObject *win) _curses_panel_new_panel_impl(PyObject *module, PyCursesWindowObject *win)
/*[clinic end generated code: output=45e948e0176a9bd2 input=74d4754e0ebe4800]*/ /*[clinic end generated code: output=45e948e0176a9bd2 input=74d4754e0ebe4800]*/
{ {
_curses_panel_state *state = get_curses_panel_state(module);
PANEL *pan = new_panel(win->win); PANEL *pan = new_panel(win->win);
if (pan == NULL) { if (pan == NULL) {
PyErr_SetString(_curses_panelstate_global->PyCursesError, catchall_NULL); PyErr_SetString(state->PyCursesError, catchall_NULL);
return NULL; return NULL;
} }
return (PyObject *)PyCursesPanel_New(pan, win); return (PyObject *)PyCursesPanel_New(state, pan, win);
} }
@ -610,7 +633,6 @@ _curses_panel_update_panels_impl(PyObject *module)
Py_RETURN_NONE; Py_RETURN_NONE;
} }
/* List of functions defined in the module */ /* List of functions defined in the module */
static PyMethodDef PyCurses_methods[] = { static PyMethodDef PyCurses_methods[] = {
@ -622,57 +644,75 @@ static PyMethodDef PyCurses_methods[] = {
}; };
/* Initialization function for the module */ /* Initialization function for the module */
static int
_curses_panel_exec(PyObject *mod)
{
_curses_panel_state *state = get_curses_panel_state(mod);
/* Initialize object type */
state->PyCursesPanel_Type = (PyTypeObject *)PyType_FromModuleAndSpec(
mod, &PyCursesPanel_Type_spec, NULL);
if (state->PyCursesPanel_Type == NULL) {
return -1;
}
if (PyModule_AddType(mod, state->PyCursesPanel_Type) < 0) {
return -1;
}
import_curses();
if (PyErr_Occurred()) {
return -1;
}
/* For exception _curses_panel.error */
state->PyCursesError = PyErr_NewException(
"_curses_panel.error", NULL, NULL);
Py_INCREF(state->PyCursesError);
if (PyModule_AddObject(mod, "error", state->PyCursesError) < 0) {
Py_DECREF(state->PyCursesError);
return -1;
}
/* Make the version available */
PyObject *v = PyUnicode_FromString(PyCursesVersion);
if (v == NULL) {
return -1;
}
PyObject *d = PyModule_GetDict(mod);
if (PyDict_SetItemString(d, "version", v) < 0) {
Py_DECREF(v);
return -1;
}
if (PyDict_SetItemString(d, "__version__", v) < 0) {
Py_DECREF(v);
return -1;
}
Py_DECREF(v);
return 0;
}
static PyModuleDef_Slot _curses_slots[] = {
{Py_mod_exec, _curses_panel_exec},
{0, NULL}
};
static struct PyModuleDef _curses_panelmodule = { static struct PyModuleDef _curses_panelmodule = {
PyModuleDef_HEAD_INIT, PyModuleDef_HEAD_INIT,
"_curses_panel", .m_name = "_curses_panel",
NULL, .m_size = sizeof(_curses_panel_state),
sizeof(_curses_panelstate), .m_methods = PyCurses_methods,
PyCurses_methods, .m_slots = _curses_slots,
NULL, .m_traverse = _curses_panel_traverse,
_curses_panel_traverse, .m_clear = _curses_panel_clear,
_curses_panel_clear, .m_free = _curses_panel_free
_curses_panel_free
}; };
PyMODINIT_FUNC PyMODINIT_FUNC
PyInit__curses_panel(void) PyInit__curses_panel(void)
{ {
PyObject *m, *d, *v; return PyModuleDef_Init(&_curses_panelmodule);
}
/* 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;
get_curses_panelstate(m)->PyCursesPanel_Type = v;
import_curses();
if (PyErr_Occurred())
goto fail;
/* For exception _curses_panel.error */
get_curses_panelstate(m)->PyCursesError = PyErr_NewException("_curses_panel.error", NULL, NULL);
PyDict_SetItemString(d, "error", get_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(get_curses_panelstate(m)->PyCursesPanel_Type);
PyModule_AddObject(m, "panel",
(PyObject *)get_curses_panelstate(m)->PyCursesPanel_Type);
return m;
fail:
Py_XDECREF(m);
return NULL;
}

View File

@ -9,15 +9,26 @@ PyDoc_STRVAR(_curses_panel_panel_bottom__doc__,
"Push the panel to the bottom of the stack."); "Push the panel to the bottom of the stack.");
#define _CURSES_PANEL_PANEL_BOTTOM_METHODDEF \ #define _CURSES_PANEL_PANEL_BOTTOM_METHODDEF \
{"bottom", (PyCFunction)_curses_panel_panel_bottom, METH_NOARGS, _curses_panel_panel_bottom__doc__}, {"bottom", (PyCFunction)(void(*)(void))_curses_panel_panel_bottom, METH_METHOD|METH_FASTCALL|METH_KEYWORDS, _curses_panel_panel_bottom__doc__},
static PyObject * static PyObject *
_curses_panel_panel_bottom_impl(PyCursesPanelObject *self); _curses_panel_panel_bottom_impl(PyCursesPanelObject *self, PyTypeObject *cls);
static PyObject * static PyObject *
_curses_panel_panel_bottom(PyCursesPanelObject *self, PyObject *Py_UNUSED(ignored)) _curses_panel_panel_bottom(PyCursesPanelObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
{ {
return _curses_panel_panel_bottom_impl(self); PyObject *return_value = NULL;
static const char * const _keywords[] = { NULL};
static _PyArg_Parser _parser = {":bottom", _keywords, 0};
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser
)) {
goto exit;
}
return_value = _curses_panel_panel_bottom_impl(self, cls);
exit:
return return_value;
} }
PyDoc_STRVAR(_curses_panel_panel_hide__doc__, PyDoc_STRVAR(_curses_panel_panel_hide__doc__,
@ -29,15 +40,26 @@ PyDoc_STRVAR(_curses_panel_panel_hide__doc__,
"This does not delete the object, it just makes the window on screen invisible."); "This does not delete the object, it just makes the window on screen invisible.");
#define _CURSES_PANEL_PANEL_HIDE_METHODDEF \ #define _CURSES_PANEL_PANEL_HIDE_METHODDEF \
{"hide", (PyCFunction)_curses_panel_panel_hide, METH_NOARGS, _curses_panel_panel_hide__doc__}, {"hide", (PyCFunction)(void(*)(void))_curses_panel_panel_hide, METH_METHOD|METH_FASTCALL|METH_KEYWORDS, _curses_panel_panel_hide__doc__},
static PyObject * static PyObject *
_curses_panel_panel_hide_impl(PyCursesPanelObject *self); _curses_panel_panel_hide_impl(PyCursesPanelObject *self, PyTypeObject *cls);
static PyObject * static PyObject *
_curses_panel_panel_hide(PyCursesPanelObject *self, PyObject *Py_UNUSED(ignored)) _curses_panel_panel_hide(PyCursesPanelObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
{ {
return _curses_panel_panel_hide_impl(self); PyObject *return_value = NULL;
static const char * const _keywords[] = { NULL};
static _PyArg_Parser _parser = {":hide", _keywords, 0};
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser
)) {
goto exit;
}
return_value = _curses_panel_panel_hide_impl(self, cls);
exit:
return return_value;
} }
PyDoc_STRVAR(_curses_panel_panel_show__doc__, PyDoc_STRVAR(_curses_panel_panel_show__doc__,
@ -47,15 +69,26 @@ PyDoc_STRVAR(_curses_panel_panel_show__doc__,
"Display the panel (which might have been hidden)."); "Display the panel (which might have been hidden).");
#define _CURSES_PANEL_PANEL_SHOW_METHODDEF \ #define _CURSES_PANEL_PANEL_SHOW_METHODDEF \
{"show", (PyCFunction)_curses_panel_panel_show, METH_NOARGS, _curses_panel_panel_show__doc__}, {"show", (PyCFunction)(void(*)(void))_curses_panel_panel_show, METH_METHOD|METH_FASTCALL|METH_KEYWORDS, _curses_panel_panel_show__doc__},
static PyObject * static PyObject *
_curses_panel_panel_show_impl(PyCursesPanelObject *self); _curses_panel_panel_show_impl(PyCursesPanelObject *self, PyTypeObject *cls);
static PyObject * static PyObject *
_curses_panel_panel_show(PyCursesPanelObject *self, PyObject *Py_UNUSED(ignored)) _curses_panel_panel_show(PyCursesPanelObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
{ {
return _curses_panel_panel_show_impl(self); PyObject *return_value = NULL;
static const char * const _keywords[] = { NULL};
static _PyArg_Parser _parser = {":show", _keywords, 0};
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser
)) {
goto exit;
}
return_value = _curses_panel_panel_show_impl(self, cls);
exit:
return return_value;
} }
PyDoc_STRVAR(_curses_panel_panel_top__doc__, PyDoc_STRVAR(_curses_panel_panel_top__doc__,
@ -65,15 +98,26 @@ PyDoc_STRVAR(_curses_panel_panel_top__doc__,
"Push panel to the top of the stack."); "Push panel to the top of the stack.");
#define _CURSES_PANEL_PANEL_TOP_METHODDEF \ #define _CURSES_PANEL_PANEL_TOP_METHODDEF \
{"top", (PyCFunction)_curses_panel_panel_top, METH_NOARGS, _curses_panel_panel_top__doc__}, {"top", (PyCFunction)(void(*)(void))_curses_panel_panel_top, METH_METHOD|METH_FASTCALL|METH_KEYWORDS, _curses_panel_panel_top__doc__},
static PyObject * static PyObject *
_curses_panel_panel_top_impl(PyCursesPanelObject *self); _curses_panel_panel_top_impl(PyCursesPanelObject *self, PyTypeObject *cls);
static PyObject * static PyObject *
_curses_panel_panel_top(PyCursesPanelObject *self, PyObject *Py_UNUSED(ignored)) _curses_panel_panel_top(PyCursesPanelObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
{ {
return _curses_panel_panel_top_impl(self); PyObject *return_value = NULL;
static const char * const _keywords[] = { NULL};
static _PyArg_Parser _parser = {":top", _keywords, 0};
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser
)) {
goto exit;
}
return_value = _curses_panel_panel_top_impl(self, cls);
exit:
return return_value;
} }
PyDoc_STRVAR(_curses_panel_panel_above__doc__, PyDoc_STRVAR(_curses_panel_panel_above__doc__,
@ -137,30 +181,26 @@ PyDoc_STRVAR(_curses_panel_panel_move__doc__,
"Move the panel to the screen coordinates (y, x)."); "Move the panel to the screen coordinates (y, x).");
#define _CURSES_PANEL_PANEL_MOVE_METHODDEF \ #define _CURSES_PANEL_PANEL_MOVE_METHODDEF \
{"move", (PyCFunction)(void(*)(void))_curses_panel_panel_move, METH_FASTCALL, _curses_panel_panel_move__doc__}, {"move", (PyCFunction)(void(*)(void))_curses_panel_panel_move, METH_METHOD|METH_FASTCALL|METH_KEYWORDS, _curses_panel_panel_move__doc__},
static PyObject * static PyObject *
_curses_panel_panel_move_impl(PyCursesPanelObject *self, int y, int x); _curses_panel_panel_move_impl(PyCursesPanelObject *self, PyTypeObject *cls,
int y, int x);
static PyObject * static PyObject *
_curses_panel_panel_move(PyCursesPanelObject *self, PyObject *const *args, Py_ssize_t nargs) _curses_panel_panel_move(PyCursesPanelObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
{ {
PyObject *return_value = NULL; PyObject *return_value = NULL;
static const char * const _keywords[] = {"", "", NULL};
static _PyArg_Parser _parser = {"ii:move", _keywords, 0};
int y; int y;
int x; int x;
if (!_PyArg_CheckPositional("move", nargs, 2, 2)) { if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&y, &x)) {
goto exit; goto exit;
} }
y = _PyLong_AsInt(args[0]); return_value = _curses_panel_panel_move_impl(self, cls, y, x);
if (y == -1 && PyErr_Occurred()) {
goto exit;
}
x = _PyLong_AsInt(args[1]);
if (x == -1 && PyErr_Occurred()) {
goto exit;
}
return_value = _curses_panel_panel_move_impl(self, y, x);
exit: exit:
return return_value; return return_value;
@ -191,24 +231,26 @@ PyDoc_STRVAR(_curses_panel_panel_replace__doc__,
"Change the window associated with the panel to the window win."); "Change the window associated with the panel to the window win.");
#define _CURSES_PANEL_PANEL_REPLACE_METHODDEF \ #define _CURSES_PANEL_PANEL_REPLACE_METHODDEF \
{"replace", (PyCFunction)_curses_panel_panel_replace, METH_O, _curses_panel_panel_replace__doc__}, {"replace", (PyCFunction)(void(*)(void))_curses_panel_panel_replace, METH_METHOD|METH_FASTCALL|METH_KEYWORDS, _curses_panel_panel_replace__doc__},
static PyObject * static PyObject *
_curses_panel_panel_replace_impl(PyCursesPanelObject *self, _curses_panel_panel_replace_impl(PyCursesPanelObject *self,
PyTypeObject *cls,
PyCursesWindowObject *win); PyCursesWindowObject *win);
static PyObject * static PyObject *
_curses_panel_panel_replace(PyCursesPanelObject *self, PyObject *arg) _curses_panel_panel_replace(PyCursesPanelObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
{ {
PyObject *return_value = NULL; PyObject *return_value = NULL;
static const char * const _keywords[] = {"", NULL};
static _PyArg_Parser _parser = {"O!:replace", _keywords, 0};
PyCursesWindowObject *win; PyCursesWindowObject *win;
if (!PyObject_TypeCheck(arg, &PyCursesWindow_Type)) { if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
_PyArg_BadArgument("replace", "argument", (&PyCursesWindow_Type)->tp_name, arg); &PyCursesWindow_Type, &win)) {
goto exit; goto exit;
} }
win = (PyCursesWindowObject *)arg; return_value = _curses_panel_panel_replace_impl(self, cls, win);
return_value = _curses_panel_panel_replace_impl(self, win);
exit: exit:
return return_value; return return_value;
@ -221,7 +263,29 @@ PyDoc_STRVAR(_curses_panel_panel_set_userptr__doc__,
"Set the panel\'s user pointer to obj."); "Set the panel\'s user pointer to obj.");
#define _CURSES_PANEL_PANEL_SET_USERPTR_METHODDEF \ #define _CURSES_PANEL_PANEL_SET_USERPTR_METHODDEF \
{"set_userptr", (PyCFunction)_curses_panel_panel_set_userptr, METH_O, _curses_panel_panel_set_userptr__doc__}, {"set_userptr", (PyCFunction)(void(*)(void))_curses_panel_panel_set_userptr, METH_METHOD|METH_FASTCALL|METH_KEYWORDS, _curses_panel_panel_set_userptr__doc__},
static PyObject *
_curses_panel_panel_set_userptr_impl(PyCursesPanelObject *self,
PyTypeObject *cls, PyObject *obj);
static PyObject *
_curses_panel_panel_set_userptr(PyCursesPanelObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
{
PyObject *return_value = NULL;
static const char * const _keywords[] = {"", NULL};
static _PyArg_Parser _parser = {"O:set_userptr", _keywords, 0};
PyObject *obj;
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
&obj)) {
goto exit;
}
return_value = _curses_panel_panel_set_userptr_impl(self, cls, obj);
exit:
return return_value;
}
PyDoc_STRVAR(_curses_panel_panel_userptr__doc__, PyDoc_STRVAR(_curses_panel_panel_userptr__doc__,
"userptr($self, /)\n" "userptr($self, /)\n"
@ -230,15 +294,27 @@ PyDoc_STRVAR(_curses_panel_panel_userptr__doc__,
"Return the user pointer for the panel."); "Return the user pointer for the panel.");
#define _CURSES_PANEL_PANEL_USERPTR_METHODDEF \ #define _CURSES_PANEL_PANEL_USERPTR_METHODDEF \
{"userptr", (PyCFunction)_curses_panel_panel_userptr, METH_NOARGS, _curses_panel_panel_userptr__doc__}, {"userptr", (PyCFunction)(void(*)(void))_curses_panel_panel_userptr, METH_METHOD|METH_FASTCALL|METH_KEYWORDS, _curses_panel_panel_userptr__doc__},
static PyObject * static PyObject *
_curses_panel_panel_userptr_impl(PyCursesPanelObject *self); _curses_panel_panel_userptr_impl(PyCursesPanelObject *self,
PyTypeObject *cls);
static PyObject * static PyObject *
_curses_panel_panel_userptr(PyCursesPanelObject *self, PyObject *Py_UNUSED(ignored)) _curses_panel_panel_userptr(PyCursesPanelObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
{ {
return _curses_panel_panel_userptr_impl(self); PyObject *return_value = NULL;
static const char * const _keywords[] = { NULL};
static _PyArg_Parser _parser = {":userptr", _keywords, 0};
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser
)) {
goto exit;
}
return_value = _curses_panel_panel_userptr_impl(self, cls);
exit:
return return_value;
} }
PyDoc_STRVAR(_curses_panel_bottom_panel__doc__, PyDoc_STRVAR(_curses_panel_bottom_panel__doc__,
@ -325,4 +401,4 @@ _curses_panel_update_panels(PyObject *module, PyObject *Py_UNUSED(ignored))
{ {
return _curses_panel_update_panels_impl(module); return _curses_panel_update_panels_impl(module);
} }
/*[clinic end generated code: output=1226d5f94361ebfb input=a9049054013a1b77]*/ /*[clinic end generated code: output=3081ef24e5560cb0 input=a9049054013a1b77]*/