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
d2eadc69
Commit
d2eadc69
authored
May 12, 2003
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated simple example. This should have been checked in the other
day, but I missfired in CVS.
parent
7af9f4da
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
45 deletions
+45
-45
Doc/ext/noddy.c
Doc/ext/noddy.c
+45
-45
No files found.
Doc/ext/noddy.c
View file @
d2eadc69
#include <Python.h>
static
PyTypeObject
noddy_NoddyType
;
typedef
struct
{
PyObject_HEAD
/* Type-specific fields go here. */
}
noddy_NoddyObject
;
static
PyObject
*
noddy_new_noddy
(
PyObject
*
self
,
PyObject
*
args
)
{
noddy_NoddyObject
*
noddy
;
noddy
=
PyObject_New
(
noddy_NoddyObject
,
&
noddy_NoddyType
);
/* Initialize type-specific fields here. */
return
(
PyObject
*
)
noddy
;
}
static
void
noddy_noddy_dealloc
(
PyObject
*
self
)
{
/* Free any external resources here;
* if the instance owns references to any Python
* objects, call Py_DECREF() on them here.
*/
PyObject_Del
(
self
);
}
static
PyTypeObject
noddy_NoddyType
=
{
PyObject_HEAD_INIT
(
NULL
)
0
,
"
Noddy"
,
sizeof
(
noddy_NoddyObject
),
0
,
noddy_noddy_dealloc
,
/*tp_dealloc*/
0
,
/*ob_size*/
"
noddy.Noddy"
,
/*tp_name*/
sizeof
(
noddy_NoddyObject
),
/*tp_basicsize*/
0
,
/*tp_itemsize*/
0
,
/*tp_dealloc*/
0
,
/*tp_print*/
0
,
/*tp_getattr*/
0
,
/*tp_setattr*/
...
...
@@ -45,22 +21,46 @@ static PyTypeObject noddy_NoddyType = {
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*/
"Noddy objects"
,
/* tp_doc */
0
,
/* tp_traverse */
0
,
/* tp_clear */
0
,
/* tp_richcompare */
0
,
/* tp_weaklistoffset */
0
,
/* tp_iter */
0
,
/* tp_iternext */
0
,
/* tp_methods */
0
,
/* tp_members */
0
,
/* tp_getset */
0
,
/* tp_base */
0
,
/* tp_dict */
0
,
/* tp_descr_get */
0
,
/* tp_descr_set */
0
,
/* tp_dictoffset */
0
,
/* tp_init */
0
,
/* tp_alloc */
PyType_GenericNew
,
/* tp_new */
};
static
PyMethodDef
noddy_methods
[]
=
{
{
"new_noddy"
,
noddy_new_noddy
,
METH_NOARGS
,
"Create a new Noddy object."
},
{
NULL
}
/* Sentinel */
};
PyMODINIT_FUNC
initnoddy
(
void
)
{
noddy_NoddyType
.
ob_type
=
&
PyType_Type
;
if
(
PyType_Ready
(
&
noddy_NoddyType
))
PyObject
*
m
;
if
(
PyType_Ready
(
&
noddy_NoddyType
)
<
0
)
return
;
Py_InitModule3
(
"noddy"
,
noddy_methods
m
=
Py_InitModule3
(
"noddy"
,
noddy_methods
,
"Example module that creates an extension type."
);
PyModule_AddObject
(
m
,
"Noddy"
,
(
PyObject
*
)
&
noddy_NoddyType
);
}
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