Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
bc07cb88
Commit
bc07cb88
authored
Jun 14, 2012
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #14936: curses_panel was converted to PEP 3121 and PEP 384 API.
Patch by Robin Schreiber.
parent
c838ec1f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
44 deletions
+30
-44
Misc/NEWS
Misc/NEWS
+1
-1
Modules/_curses_panel.c
Modules/_curses_panel.c
+29
-43
No files found.
Misc/NEWS
View file @
bc07cb88
...
...
@@ -21,7 +21,7 @@ Core and Builtins
Library
-------
- Issue #14936: curses_panel was converted to PEP 3121 API.
- Issue #14936: curses_panel was converted to PEP 3121
and PEP 384
API.
Patch by Robin Schreiber.
- Issue #1667546: On platforms supporting tm_zone and tm_gmtoff fields
...
...
Modules/_curses_panel.c
View file @
bc07cb88
...
...
@@ -18,12 +18,11 @@ static char *PyCursesVersion = "2.1";
typedef
struct
{
PyObject
*
PyCursesError
;
PyObject
*
PyCursesPanel_Type
;
}
_curses_panelstate
;
#define _curses_panelstate(o) ((_curses_panelstate *)PyModule_GetState(o))
/*static PyObject *PyCursesError;*/
static
int
_curses_panel_clear
(
PyObject
*
m
)
{
...
...
@@ -84,9 +83,8 @@ typedef struct {
PyCursesWindowObject
*
wo
;
/* for reference counts */
}
PyCursesPanelObject
;
PyTypeObject
PyCursesPanel_Type
;
#define PyCursesPanel_Check(v) (Py_TYPE(v) == &PyCursesPanel_Type)
#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
...
...
@@ -205,7 +203,8 @@ PyCursesPanel_New(PANEL *pan, PyCursesWindowObject *wo)
{
PyCursesPanelObject
*
po
;
po
=
PyObject_NEW
(
PyCursesPanelObject
,
&
PyCursesPanel_Type
);
po
=
PyObject_NEW
(
PyCursesPanelObject
,
(
PyTypeObject
*
)(
_curses_panelstate_global
)
->
PyCursesPanel_Type
);
if
(
po
==
NULL
)
return
NULL
;
po
->
pan
=
pan
;
if
(
insert_lop
(
po
)
<
0
)
{
...
...
@@ -364,36 +363,18 @@ static PyMethodDef PyCursesPanel_Methods[] = {
/* -------------------------------------------------------*/
PyTypeObject
PyCursesPanel_Type
=
{
PyVarObject_HEAD_INIT
(
NULL
,
0
)
"_curses_panel.curses panel"
,
/*tp_name*/
sizeof
(
PyCursesPanelObject
),
/*tp_basicsize*/
0
,
/*tp_itemsize*/
/* methods */
(
destructor
)
PyCursesPanel_Dealloc
,
/*tp_dealloc*/
0
,
/*tp_print*/
0
,
/*tp_getattr*/
0
,
/*tp_setattr*/
0
,
/*tp_reserved*/
0
,
/*tp_repr*/
0
,
/*tp_as_number*/
0
,
/*tp_as_sequence*/
0
,
/*tp_as_mapping*/
0
,
/*tp_hash*/
0
,
/*tp_call*/
0
,
/*tp_str*/
0
,
/*tp_getattro*/
0
,
/*tp_setattro*/
0
,
/*tp_as_buffer*/
Py_TPFLAGS_DEFAULT
,
/*tp_flags*/
0
,
/*tp_doc*/
0
,
/*tp_traverse*/
0
,
/*tp_clear*/
0
,
/*tp_richcompare*/
0
,
/*tp_weaklistoffset*/
0
,
/*tp_iter*/
0
,
/*tp_iternext*/
PyCursesPanel_Methods
,
/*tp_methods*/
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.curses panel"
,
sizeof
(
PyCursesPanelObject
),
0
,
Py_TPFLAGS_DEFAULT
,
PyCursesPanel_Type_slots
};
/* Wrapper for panel_above(NULL). This function returns the bottom
...
...
@@ -510,18 +491,20 @@ PyInit__curses_panel(void)
{
PyObject
*
m
,
*
d
,
*
v
;
/* Initialize object type */
if
(
PyType_Ready
(
&
PyCursesPanel_Type
)
<
0
)
return
NULL
;
import_curses
();
/* Create the module and add the functions */
m
=
PyModule_Create
(
&
_curses_panelmodule
);
if
(
m
==
NULL
)
return
NULL
;
goto
fail
;
d
=
PyModule_GetDict
(
m
);
/* Initialize object type */
_curses_panelstate
(
m
)
->
PyCursesPanel_Type
=
\
PyType_FromSpec
(
&
PyCursesPanel_Type_spec
);
if
(
_curses_panelstate
(
m
)
->
PyCursesPanel_Type
==
NULL
)
goto
fail
;
import_curses
();
/* For exception _curses_panel.error */
_curses_panelstate
(
m
)
->
PyCursesError
=
PyErr_NewException
(
"_curses_panel.error"
,
NULL
,
NULL
);
PyDict_SetItemString
(
d
,
"error"
,
_curses_panelstate
(
m
)
->
PyCursesError
);
...
...
@@ -532,4 +515,7 @@ PyInit__curses_panel(void)
PyDict_SetItemString
(
d
,
"__version__"
,
v
);
Py_DECREF
(
v
);
return
m
;
fail:
Py_XDECREF
(
m
);
return
NULL
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment